comparison src/share/vm/runtime/thread.hpp @ 2181:d25d4ca69222

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Wed, 16 Feb 2011 13:47:20 +0100
parents 91fe28b03d6a db2b0f8c1cef
children 0cd39a385a72
comparison
equal deleted inserted replaced
2108:50b45e2d9725 2181:d25d4ca69222
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