< prev index next >

src/share/vm/gc/g1/g1StringDedupQueue.cpp

Print this page

        

@@ -94,11 +94,11 @@
   }
 }
 
 oop G1StringDedupQueue::pop() {
   assert(!SafepointSynchronize::is_at_safepoint(), "Must not be at safepoint");
-  No_Safepoint_Verifier nsv;
+  NoSafepointVerifier nsv;
 
   // Try all queues before giving up
   for (size_t tries = 0; tries < _queue->_nqueues; tries++) {
     // The cursor indicates where we left of last time
     G1StringDedupWorkerQueue* queue = &_queue->_queues[_queue->_cursor];
< prev index next >