hotspot/src/share/vm/runtime/thread.hpp
changeset 7897 201a8b00ec91
parent 7724 a92d706dbdd5
child 8107 78e5bd944384
equal deleted inserted replaced
7896:08aadd7aa3ee 7897:201a8b00ec91
   807   //
   807   //
   808   //   _not_terminated => _thread_exiting => _thread_terminated
   808   //   _not_terminated => _thread_exiting => _thread_terminated
   809   //
   809   //
   810   // _vm_exited is a special value to cover the case of a JavaThread
   810   // _vm_exited is a special value to cover the case of a JavaThread
   811   // executing native code after the VM itself is terminated.
   811   // executing native code after the VM itself is terminated.
   812   TerminatedTypes       _terminated;
   812   volatile TerminatedTypes _terminated;
   813   // suspend/resume support
   813   // suspend/resume support
   814   volatile bool         _suspend_equivalent;     // Suspend equivalent condition
   814   volatile bool         _suspend_equivalent;     // Suspend equivalent condition
   815   jint                  _in_deopt_handler;       // count of deoptimization
   815   jint                  _in_deopt_handler;       // count of deoptimization
   816                                                  // handlers thread is in
   816                                                  // handlers thread is in
   817   volatile bool         _doing_unsafe_access;    // Thread may fault due to unsafe access
   817   volatile bool         _doing_unsafe_access;    // Thread may fault due to unsafe access