6928562: Assert(_no_handle_mark_nesting==0,"allocating handle inside NoHandleMark")

Reset NoHandleMark before going into VM.

Reviewed-by: iveresov
This commit is contained in:
Vladimir Kozlov 2010-12-30 09:36:03 -08:00
parent 28050800c0
commit f02562388c

View file

@ -33,6 +33,7 @@ void AbstractCompiler::initialize_runtimes(initializer f, volatile int* state) {
bool do_initialization = false;
{
ThreadInVMfromNative tv(thread);
ResetNoHandleMark rnhm;
MutexLocker only_one(CompileThread_lock, thread);
if ( *state == uninitialized) {
do_initialization = true;
@ -53,6 +54,7 @@ void AbstractCompiler::initialize_runtimes(initializer f, volatile int* state) {
// To in_vm so we can use the lock
ThreadInVMfromNative tv(thread);
ResetNoHandleMark rnhm;
MutexLocker only_one(CompileThread_lock, thread);
assert(*state == initializing, "wrong state");
*state = initialized;