HPCToolkit
_mcontext.h
Go to the documentation of this file.
1 #ifndef _MCONTEXT_H
2 #define _MCONTEXT_H
3 
4 #include <ucontext.h>
5 
6 static inline void*
7 ucontext_pc(ucontext_t* context)
8 {
9  return (void*) context->_u._mc.sc_ip;
10 }
11 
12 #endif // _MCONTEXT_H
static void * ucontext_pc(ucontext_t *context)
Definition: _mcontext.h:7