Commit 7edc2bad by Tom Tromey Committed by Tom Tromey

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
parent 9f25f0ad
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
......
// -*- 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 *)
{
}
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment