Searched defs:_interrupted (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DosThread.hpp67 volatile jint _interrupted; // Thread.isInterrupted state member in class:OSThread
69 // Note: _interrupted must be jint, so that Java intrinsics can access it.
72 // the double indirection Thread::current()->_osthread->_interrupted.
88 volatile bool interrupted() const { return _interrupted != 0; }
89 void set_interrupted(bool z) { _interrupted = z ? 1 : 0; }
96 static ByteSize interrupted_offset() { return byte_offset_of(OSThread, _interrupted); }

Completed in 265 milliseconds