hotspot/src/share/vm/prims/jvmtiThreadState.hpp
changeset 13975 2f7431485cfa
parent 13728 882756847a04
child 42895 c97cd79636ec
equal deleted inserted replaced
13951:3fc49366dc15 13975:2f7431485cfa
   389   static ByteSize earlyret_state_offset() { return byte_offset_of(JvmtiThreadState, _earlyret_state); }
   389   static ByteSize earlyret_state_offset() { return byte_offset_of(JvmtiThreadState, _earlyret_state); }
   390   static ByteSize earlyret_tos_offset()   { return byte_offset_of(JvmtiThreadState, _earlyret_tos); }
   390   static ByteSize earlyret_tos_offset()   { return byte_offset_of(JvmtiThreadState, _earlyret_tos); }
   391   static ByteSize earlyret_oop_offset()   { return byte_offset_of(JvmtiThreadState, _earlyret_oop); }
   391   static ByteSize earlyret_oop_offset()   { return byte_offset_of(JvmtiThreadState, _earlyret_oop); }
   392   static ByteSize earlyret_value_offset() { return byte_offset_of(JvmtiThreadState, _earlyret_value); }
   392   static ByteSize earlyret_value_offset() { return byte_offset_of(JvmtiThreadState, _earlyret_value); }
   393 
   393 
   394   void oops_do(OopClosure* f); // GC support
   394   void oops_do(OopClosure* f) NOT_JVMTI_RETURN; // GC support
   395 
   395 
   396 public:
   396 public:
   397   void set_should_post_on_exceptions(bool val) { _thread->set_should_post_on_exceptions_flag(val ? JNI_TRUE : JNI_FALSE); }
   397   void set_should_post_on_exceptions(bool val) { _thread->set_should_post_on_exceptions_flag(val ? JNI_TRUE : JNI_FALSE); }
   398 };
   398 };
   399 
   399