< prev index next >

src/hotspot/share/runtime/javaThread.cpp

Print this page

 479   _is_method_handle_return(0),
 480 
 481   _jni_active_critical(0),
 482   _pending_jni_exception_check_fn(nullptr),
 483   _depth_first_number(0),
 484 
 485   // JVMTI PopFrame support
 486   _popframe_condition(popframe_inactive),
 487   _frames_to_pop_failed_realloc(0),
 488 
 489   _cont_entry(nullptr),
 490   _cont_fastpath(nullptr),
 491   _cont_fastpath_thread_state(1),
 492   _held_monitor_count(0),
 493   _jni_monitor_count(0),
 494   _unlocked_inflated_monitor(nullptr),
 495 
 496   _preempt_alternate_return(nullptr),
 497   _preemption_cancelled(false),
 498   _pending_interrupted_exception(false),


 499 
 500   _handshake(this),
 501 
 502   _popframe_preserved_args(nullptr),
 503   _popframe_preserved_args_size(0),
 504 
 505   _jvmti_thread_state(nullptr),
 506   _interp_only_mode(0),
 507   _should_post_on_exceptions_flag(JNI_FALSE),
 508   _thread_stat(new ThreadStatistics()),
 509 
 510   _parker(),
 511 
 512   _class_to_be_initialized(nullptr),
 513   _class_being_initialized(nullptr),
 514 
 515   _SleepEvent(ParkEvent::Allocate(this)),
 516 
 517 #if INCLUDE_JFR
 518   _last_freeze_fail_result(freeze_ok),

 479   _is_method_handle_return(0),
 480 
 481   _jni_active_critical(0),
 482   _pending_jni_exception_check_fn(nullptr),
 483   _depth_first_number(0),
 484 
 485   // JVMTI PopFrame support
 486   _popframe_condition(popframe_inactive),
 487   _frames_to_pop_failed_realloc(0),
 488 
 489   _cont_entry(nullptr),
 490   _cont_fastpath(nullptr),
 491   _cont_fastpath_thread_state(1),
 492   _held_monitor_count(0),
 493   _jni_monitor_count(0),
 494   _unlocked_inflated_monitor(nullptr),
 495 
 496   _preempt_alternate_return(nullptr),
 497   _preemption_cancelled(false),
 498   _pending_interrupted_exception(false),
 499   _at_preemptable_init(false),
 500   DEBUG_ONLY(_preempt_init_klass(nullptr) COMMA)
 501 
 502   _handshake(this),
 503 
 504   _popframe_preserved_args(nullptr),
 505   _popframe_preserved_args_size(0),
 506 
 507   _jvmti_thread_state(nullptr),
 508   _interp_only_mode(0),
 509   _should_post_on_exceptions_flag(JNI_FALSE),
 510   _thread_stat(new ThreadStatistics()),
 511 
 512   _parker(),
 513 
 514   _class_to_be_initialized(nullptr),
 515   _class_being_initialized(nullptr),
 516 
 517   _SleepEvent(ParkEvent::Allocate(this)),
 518 
 519 #if INCLUDE_JFR
 520   _last_freeze_fail_result(freeze_ok),
< prev index next >