blob: 740df11512fa8a2be48e8526cd4e92c8fdf87de2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <ucontext.h>
typedef struct ucontext_t {
struct ucontext_t * uc_link;
sigset_t uc_sigmask;
stack_t uc_stack;
mcontext_t uc_mcontext;
} ucontext_t;
/*
XOPEN(400,700)
*/
|