< prev index next >

src/hotspot/share/classfile/javaClasses.hpp

Print this page

        

*** 362,371 **** --- 362,372 ---- static int _group_offset; static int _contextClassLoader_offset; static int _inheritedAccessControlContext_offset; static int _priority_offset; static int _eetop_offset; + static int _interrupted_offset; static int _daemon_offset; static int _stillborn_offset; static int _stackSize_offset; static int _tid_offset; static int _thread_status_offset;
*** 380,389 **** --- 381,393 ---- static oop create(); // Returns the JavaThread associated with the thread obj static JavaThread* thread(oop java_thread); // Set JavaThread for instance static void set_thread(oop java_thread, JavaThread* thread); + // Interrupted status + static bool interrupted(oop java_thread); + static void set_interrupted(oop java_thread, bool val); // Name static oop name(oop java_thread); static void set_name(oop java_thread, oop name); // Priority static ThreadPriority priority(oop java_thread);
< prev index next >