Home | History | Annotate | Download | only in src

Lines Matching refs:ucontext_t

38 // To get this, we use the ucontext_t argument to the signal-handler
40 // the signal triggered. How to get from a ucontext_t to a Program
61 #include <ucontext.h> // for ucontext_t (and also mcontext_t)
64 typedef ucontext ucontext_t;
137 inline void* GetPC(const ucontext_t& signal_ucontext) {
164 // alas the arguments are different: no ucontext_t! I don't know
170 typedef int ucontext_t;
173 inline void* GetPC(const struct ucontext_t& signal_ucontext) {
178 typedef struct _Unwind_Context ucontext_t;
180 inline void* GetPC(const ucontext_t& signal_ucontext) {
184 const_cast<ucontext_t*>(&signal_ucontext)));
192 inline void* GetPC(const ucontext_t& signal_ucontext) {