* no-threads.cc (_Jv_ThreadStart): Use JvFail and not JvAssert.

From-SVN: r30569
This commit is contained in:
Tom Tromey 1999-11-18 07:32:50 +00:00 committed by Tom Tromey
parent 5b8c39e0aa
commit 8cb9ab4b7e
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,7 @@
1999-11-18 Tom Tromey <tromey@cygnus.com>
* no-threads.cc (_Jv_ThreadStart): Use JvFail and not JvAssert.
* java/lang/natClass.cc (MCACHE_SIZE): Define as a power of 2
minus 1.
(method_cache): Made larger.

View File

@ -20,7 +20,10 @@ void
_Jv_ThreadStart (java::lang::Thread *thread, _Jv_Thread_t *,
_Jv_ThreadStartFunc *meth)
{
JvAssert (! _Jv_OnlyThread);
// Don't use JvAssert, since we want this to fail even when compiled
// without assertions.
if (_Jv_OnlyThread)
JvFail ("only thread already running");
_Jv_OnlyThread = thread;
(*meth) (thread);
}