diff options
author | Tom Tromey <tromey@cygnus.com> | 1999-09-01 18:29:39 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1999-09-01 18:29:39 +0000 |
commit | 6e87747b6d4a8961ab49b3a21298baf546763417 (patch) | |
tree | 6fb15ec8b692fb14a98a2eaba9879e17e7f496a6 /libjava/java/lang/Class.h | |
parent | b1133adfca2570b32dd7ded5a53b336630f593d1 (diff) | |
download | gcc-6e87747b6d4a8961ab49b3a21298baf546763417.zip gcc-6e87747b6d4a8961ab49b3a21298baf546763417.tar.gz gcc-6e87747b6d4a8961ab49b3a21298baf546763417.tar.bz2 |
posix-threads.cc (_Jv_CondWait): Call _Jv_PthreadCheckMonitor.
* posix-threads.cc (_Jv_CondWait): Call _Jv_PthreadCheckMonitor.
* include/posix-threads.h (_Jv_PthreadCheckMonitor): New
function.
(_Jv_CondNotify): Use it.
(_Jv_CondNotifyAll): Likewise.
* java/lang/Class.h (JV_STATE_NOTHING): Correct misspelling.
From-SVN: r29030
Diffstat (limited to 'libjava/java/lang/Class.h')
-rw-r--r-- | libjava/java/lang/Class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/lang/Class.h b/libjava/java/lang/Class.h index b038c34..fd2c2eb 100644 --- a/libjava/java/lang/Class.h +++ b/libjava/java/lang/Class.h @@ -27,7 +27,7 @@ extern "C" void _Jv_RegisterClasses (jclass *classes); // `resolved' must come between `nothing' and the other states. // Whenever the state changes, one should notify all waiters of this // class. -#define JV_STATE_NOTING 0 // set by compiler +#define JV_STATE_NOTHING 0 // set by compiler #define JV_STATE_PRELOADING 1 // can do _Jv_FindClass #define JV_STATE_LOADING 3 // has super installed |