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
This commit is contained in:
parent
9f25f0adaf
commit
7edc2bad71
3 changed files with 14 additions and 4 deletions
|
@ -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 *)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue