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:
Tom Tromey 2004-12-01 21:44:09 +00:00 committed by Tom Tromey
parent 9f25f0adaf
commit 7edc2bad71
3 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,12 @@
2004-12-01 Tom Tromey <tromey@redhat.com>
* include/no-threads.h (_Jv_ThreadDestroyData): Removed argument
name.
(_Jv_ThreadRegister): Likewise.
(_Jv_MutexCheckMonitor): Likewise.
* link.cc: Include limits.h.
2004-12-01 Bryce McKinlay <mckinlay@redhat.com>
PR libgcj/18699

View File

@ -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 *)
{
}

View File

@ -18,6 +18,7 @@ details. */
#include <jvm.h>
#include <gcj/cni.h>
#include <string.h>
#include <limits.h>
#include <java-cpool.h>
#include <execution.h>
#include <java/lang/Class.h>