Searched refs:_ucontext (Results 1 - 8 of 8) sorted by relevance

/openjdk10/hotspot/src/os/solaris/vm/
H A DosThread_solaris.hpp72 ucontext_t* _ucontext; variable
75 ucontext_t* ucontext() const { return _ucontext; }
76 void set_ucontext(ucontext_t* ptr) { _ucontext = ptr; }
/openjdk10/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; }
H A DosThread_linux.cpp36 _ucontext = NULL;
/openjdk10/hotspot/src/os/aix/vm/
H A DosThread_aix.cpp40 _ucontext = NULL;
H A DosThread_aix.hpp95 // _ucontext and _siginfo are used by SR_handler() to save thread context,
98 // the value in _ucontext is meaningless, so we must use the last Java
110 ucontext_t* _ucontext; variable
117 ucontext_t* ucontext() const { return _ucontext; }
118 void set_ucontext(ucontext_t* ptr) { _ucontext = ptr; }
/openjdk10/hotspot/src/os/bsd/vm/
H A DosThread_bsd.cpp40 _ucontext = NULL;
H A DosThread_bsd.hpp99 // _ucontext and _siginfo are used by SR_handler() to save thread context,
102 // the value in _ucontext is meaningless, so we must use the last Java
114 ucontext_t* _ucontext; variable
121 ucontext_t* ucontext() const { return _ucontext; }
122 void set_ucontext(ucontext_t* ptr) { _ucontext = ptr; }
/openjdk10/hotspot/src/share/vm/runtime/
H A Dos.hpp869 SuspendedThreadTaskContext(Thread* thread, void *ucontext) : _thread(thread), _ucontext(ucontext) {}
871 void* ucontext() const { return _ucontext; }
874 void* _ucontext; member in class:os::SuspendedThreadTaskContext

Completed in 107 milliseconds