12345678910111213141516171819202122232425262728 |
- #ifndef _SYS_UCONTEXT_H
- #define _SYS_UCONTEXT_H 1
- #include <signal.h>
- #include <bits/sigcontext.h>
- #define NGREG 70
- typedef unsigned long greg_t;
- typedef struct ucontext {
- unsigned long uc_flags;
- struct ucontext *uc_link;
- stack_t uc_stack;
- struct sigcontext uc_mcontext;
- sigset_t uc_sigmask;
- } ucontext_t;
- #endif
|