diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-01 21:44:09 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-01 21:44:09 +0000 |
commit | a70d499e094bee4ffebdd7854cd85c9851f0937e (patch) | |
tree | d033440ea8c9441ccad01345dc5e6ca42f9d5598 /libjava/include | |
parent | c13aea8e5e6fbc1df4224be41a8fb258060664e9 (diff) | |
download | gcc-a70d499e094bee4ffebdd7854cd85c9851f0937e.tar.gz |
* include/no-threads.h (_Jv_ThreadDestroyData): Removed argument
name.
(_Jv_ThreadRegister): Likewise.
(_Jv_MutexCheckMonitor): Likewise.
* link.cc: Include limits.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91581 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/no-threads.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/include/no-threads.h b/libjava/include/no-threads.h index 793cfadbf1b..638ecf1abe2 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 Free Software Foundation +/* Copyright (C) 1998, 1999, 2004 Free Software Foundation This file is part of libgcj. @@ -75,7 +75,7 @@ _Jv_CondNotifyAll (_Jv_ConditionVariable_t *, _Jv_Mutex_t *) // Mutexes. // -inline int _Jv_MutexCheckMonitor (_Jv_Mutex_t *mu) +inline int _Jv_MutexCheckMonitor (_Jv_Mutex_t *) { return 0; } @@ -111,7 +111,7 @@ _Jv_Thread_t * _Jv_ThreadInitData (java::lang::Thread *); inline void -_Jv_ThreadDestroyData (_Jv_Thread_t *data) +_Jv_ThreadDestroyData (_Jv_Thread_t *) { } @@ -133,7 +133,7 @@ _Jv_ThreadSetPriority (_Jv_Thread_t *, jint) } inline void -_Jv_ThreadRegister (_Jv_Thread_t *data) +_Jv_ThreadRegister (_Jv_Thread_t *) { } |