diff options
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 5 | ||||
-rw-r--r-- | libjava/include/no-threads.h | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 69916d9..a77c1c7 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2006-08-02 Andreas Tobler <a.tobler@schweiz.ch> + + PR libgcj/28546 + * include/no-threads.h: Declare _Jv_Thread_t as empty class. + 2006-08-01 Andreas Tobler <a.tobler@schweiz.ch> * gnu/classpath/natSystemProperties.cc: Add additional check for diff --git a/libjava/include/no-threads.h b/libjava/include/no-threads.h index 638ecf1..a598df3 100644 --- a/libjava/include/no-threads.h +++ b/libjava/include/no-threads.h @@ -1,7 +1,7 @@ // -*- c++ -*- // no-threads.h - Defines for using no threads. -/* Copyright (C) 1998, 1999, 2004 Free Software Foundation +/* Copyright (C) 1998, 1999, 2004, 2006 Free Software Foundation This file is part of libgcj. @@ -25,9 +25,13 @@ details. */ typedef int _Jv_ConditionVariable_t; typedef int _Jv_Mutex_t; -typedef int _Jv_Thread_t; typedef void _Jv_ThreadStartFunc (java::lang::Thread *); +// +// Declarations +// + +class _Jv_Thread_t { }; // // Condition variables. |