< prev index next >

src/share/vm/prims/jvmtiExport.cpp

Print this page

        

@@ -1902,11 +1902,11 @@
 // Collect all the vm internally allocated objects which are visible to java world
 void JvmtiExport::record_vm_internal_object_allocation(oop obj) {
   Thread* thread = Thread::current_or_null();
   if (thread != NULL && thread->is_Java_thread())  {
     // Can not take safepoint here.
-    No_Safepoint_Verifier no_sfpt;
+    NoSafepointVerifier no_sfpt;
     // Can not take safepoint here so can not use state_for to get
     // jvmti thread state.
     JvmtiThreadState *state = ((JavaThread*)thread)->jvmti_thread_state();
     if (state != NULL ) {
       // state is non NULL when VMObjectAllocEventCollector is enabled.
< prev index next >