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

/openjdk7/hotspot/src/os/bsd/vm/
H A DosThread_bsd.hpp105 // _ucontext and _siginfo are used by SR_handler() to save thread context,
108 // the value in _ucontext is meaningless, so we must use the last Java
120 ucontext_t* _ucontext; variable
127 ucontext_t* ucontext() const { return _ucontext; }
128 void set_ucontext(ucontext_t* ptr) { _ucontext = ptr; }
/openjdk7/hotspot/src/os/linux/vm/
H A DosThread_linux.hpp82 // _ucontext and _siginfo are used by SR_handler() to save thread context,
85 // the value in _ucontext is meaningless, so we must use the last Java
97 ucontext_t* _ucontext; variable
104 ucontext_t* ucontext() const { return _ucontext; }
105 void set_ucontext(ucontext_t* ptr) { _ucontext = ptr; }
/openjdk7/hotspot/src/os/solaris/vm/
H A DosThread_solaris.hpp78 ucontext_t* _ucontext; variable
81 ucontext_t* ucontext() const { return _ucontext; }
82 void set_ucontext(ucontext_t* ptr) { _ucontext = ptr; }
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp808 SuspendedThreadTaskContext(Thread* thread, void *ucontext) : _thread(thread), _ucontext(ucontext) {}
810 void* ucontext() const { return _ucontext; }
813 void* _ucontext; member in class:os::SuspendedThreadTaskContext

Completed in 25 milliseconds