File tree 1 file changed +4
-4
lines changed
hotspot/src/share/vm/prims
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 {
493
493
// Actually posts the event.
494
494
void post () NOT_JVMTI_RETURN;
495
495
// 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 ;
497
497
// 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 ;
499
499
};
500
500
501
501
/* *
@@ -534,9 +534,9 @@ class JvmtiDeferredEventQueue : AllStatic {
534
534
static void enqueue (const JvmtiDeferredEvent& event) NOT_JVMTI_RETURN;
535
535
static JvmtiDeferredEvent dequeue () NOT_JVMTI_RETURN_(JvmtiDeferredEvent());
536
536
// 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 ;
538
538
// 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 ;
540
540
541
541
// Used to enqueue events without using a lock, for times (such as during
542
542
// 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