File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
hotspot/src/share/vm/prims Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -493,9 +493,9 @@ class JvmtiDeferredEvent VALUE_OBJ_CLASS_SPEC {
493493 // Actually posts the event.
494494 void post () NOT_JVMTI_RETURN;
495495 // Sweeper support to keep nmethods from being zombied while in the queue.
496- void nmethods_do (CodeBlobClosure* cf);
496+ void nmethods_do (CodeBlobClosure* cf) NOT_JVMTI_RETURN ;
497497 // GC support to keep nmethod from being unloaded while in the queue.
498- void oops_do (OopClosure* f, CodeBlobClosure* cf);
498+ void oops_do (OopClosure* f, CodeBlobClosure* cf) NOT_JVMTI_RETURN ;
499499};
500500
501501/* *
@@ -534,9 +534,9 @@ class JvmtiDeferredEventQueue : AllStatic {
534534 static void enqueue (const JvmtiDeferredEvent& event) NOT_JVMTI_RETURN;
535535 static JvmtiDeferredEvent dequeue () NOT_JVMTI_RETURN_(JvmtiDeferredEvent());
536536 // Sweeper support to keep nmethods from being zombied while in the queue.
537- static void nmethods_do (CodeBlobClosure* cf);
537+ static void nmethods_do (CodeBlobClosure* cf) NOT_JVMTI_RETURN ;
538538 // GC support to keep nmethod from being unloaded while in the queue.
539- static void oops_do (OopClosure* f, CodeBlobClosure* cf);
539+ static void oops_do (OopClosure* f, CodeBlobClosure* cf) NOT_JVMTI_RETURN ;
540540
541541 // Used to enqueue events without using a lock, for times (such as during
542542 // safepoint) when we can't or don't want to lock the Service_lock.
You can’t perform that action at this time.
0 commit comments