SUGGESTED FIX
src/share/vm/compiler/abstractCompiler.cpp Wed Dec 29 20:22:54 2010 -0800
@@ -33,6 +33,7 @@ void AbstractCompiler::initialize_runtim
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_runtim
// 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;
|