File tree 1 file changed +12
-16
lines changed
1 file changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -283,18 +283,14 @@ JvmtiVTMTDisabler::disable_VTMT() {
283
283
DEBUG_ONLY (if (attempts == 0 ) break ;)
284
284
}
285
285
assert (!thread->is_VTMT_disabler (), " VTMT sanity check" );
286
- if (attempts != 0 ) {
287
286
#ifdef ASSERT
288
- thread->set_is_VTMT_disabler (true );
289
- #endif
287
+ if (attempts == 0 ) {
288
+ print_info ();
289
+ fatal (" stuck in JvmtiVTMTDisabler::disable_VTMT" );
290
290
}
291
- }
292
- #ifdef ASSERT
293
- if (attempts == 0 ) {
294
- print_info ();
295
- fatal (" stuck in JvmtiVTMTDisabler::disable_VTMT" );
296
- }
291
+ thread->set_is_VTMT_disabler (true );
297
292
#endif
293
+ }
298
294
}
299
295
300
296
void
@@ -360,13 +356,6 @@ JvmtiVTMTDisabler::start_VTMT(jthread vthread, bool is_mount) {
360
356
break ;
361
357
}
362
358
}
363
- // Enter VTMT section.
364
- assert (!thread->is_in_VTMT (), " VTMT sanity check" );
365
- thread->set_is_in_VTMT (true );
366
- JvmtiThreadState* vstate = java_lang_Thread::jvmti_thread_state (vth ());
367
- if (vstate != NULL ) {
368
- vstate->set_is_in_VTMT (true );
369
- }
370
359
#ifdef ASSERT
371
360
if (attempts == 0 ) {
372
361
log_error (jvmti)(" start_VTMT: thread->is_suspended: %d is_vthread_suspended: %d\n\n " ,
@@ -375,6 +364,13 @@ JvmtiVTMTDisabler::start_VTMT(jthread vthread, bool is_mount) {
375
364
fatal (" stuck in JvmtiVTMTDisabler::start_VTMT" );
376
365
}
377
366
#endif
367
+ // Enter VTMT section.
368
+ assert (!thread->is_in_VTMT (), " VTMT sanity check" );
369
+ thread->set_is_in_VTMT (true );
370
+ JvmtiThreadState* vstate = java_lang_Thread::jvmti_thread_state (vth ());
371
+ if (vstate != NULL ) {
372
+ vstate->set_is_in_VTMT (true );
373
+ }
378
374
}
379
375
380
376
void
You can’t perform that action at this time.
0 commit comments