src/hotspot/share/prims/jvmtiExport.cpp
changeset 52619 5b4242996d8c
parent 52319 625f6c742392
child 52691 d9f6a700fec9
equal deleted inserted replaced
52618:4ed308e0e89b 52619:5b4242996d8c
  2942   // thread.
  2942   // thread.
  2943   if (!thread->is_Java_thread() || thread->is_Compiler_thread()) {
  2943   if (!thread->is_Java_thread() || thread->is_Compiler_thread()) {
  2944     return false;
  2944     return false;
  2945   }
  2945   }
  2946 
  2946 
  2947   if (Compile_lock->owner() == thread ||
  2947   if (MultiArray_lock->owner() == thread) {
  2948       MultiArray_lock->owner() == thread) {
       
  2949     return false;
  2948     return false;
  2950   }
  2949   }
  2951   return true;
  2950   return true;
  2952 }
  2951 }
  2953 
  2952