aboutsummaryrefslogtreecommitdiff
path: root/libjava/include
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2004-12-01 21:44:09 +0000
committerTom Tromey <tromey@gcc.gnu.org>2004-12-01 21:44:09 +0000
commit7edc2bad7161d8255b972172c80c99546f1135c0 (patch)
treed033440ea8c9441ccad01345dc5e6ca42f9d5598 /libjava/include
parent9f25f0adaf87f273a73ff3f97ed4c4ccef8519ef (diff)
downloadgcc-7edc2bad7161d8255b972172c80c99546f1135c0.zip
gcc-7edc2bad7161d8255b972172c80c99546f1135c0.tar.gz
gcc-7edc2bad7161d8255b972172c80c99546f1135c0.tar.bz2
no-threads.h (_Jv_ThreadDestroyData): Removed argument name.
* include/no-threads.h (_Jv_ThreadDestroyData): Removed argument name. (_Jv_ThreadRegister): Likewise. (_Jv_MutexCheckMonitor): Likewise. * link.cc: Include limits.h. From-SVN: r91581
Diffstat (limited to 'libjava/include')
-rw-r--r--libjava/include/no-threads.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/include/no-threads.h b/libjava/include/no-threads.h
index 793cfad..638ecf1 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 *)
{
}