| #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ |
| || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |
| |
| #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |
| #define MINSIGSTKSZ 4096 |
| #define SIGSTKSZ 8192 |
| #endif |
| |
| typedef struct { |
| unsigned long uc_low; |
| signed long uc_high; |
| } uc_m128a_t; |
| |
| typedef struct { |
| unsigned short uc_control_word; |
| unsigned short uc_status_word; |
| unsigned char uc_tag_word; |
| unsigned char uc_reserved1; |
| unsigned short uc_error_opcode; |
| unsigned int uc_error_offset; |
| unsigned short uc_error_selector; |
| unsigned short uc_reserved2; |
| unsigned int uc_data_offset; |
| unsigned short uc_data_selector; |
| unsigned short uc_reserved3; |
| unsigned int uc_mx_csr; |
| unsigned int uc_mx_csr_mask; |
| uc_m128a_t uc_float_registers[8]; |
| } uc_xsave_fmt_t; |
| |
| typedef struct { |
| unsigned long uc_p1_home; |
| unsigned long uc_p2_home; |
| unsigned long uc_p3_home; |
| unsigned long uc_p4_home; |
| unsigned long uc_p5_home; |
| unsigned long uc_p6_home; |
| unsigned int uc_context_flags; |
| unsigned int uc_mx_csr; |
| unsigned short uc_seg_cs; |
| unsigned short uc_seg_ds; |
| unsigned short uc_seg_es; |
| unsigned short uc_seg_fs; |
| unsigned short uc_seg_gs; |
| unsigned short uc_seg_ss; |
| unsigned int uc_eflags; |
| unsigned long uc_dr0; |
| unsigned long uc_dr1; |
| unsigned long uc_dr2; |
| unsigned long uc_dr3; |
| unsigned long uc_dr6; |
| unsigned long uc_dr7; |
| unsigned long uc_rax; |
| unsigned long uc_rcx; |
| unsigned long uc_rdx; |
| unsigned long uc_rbx; |
| unsigned long uc_rsp; |
| unsigned long uc_rbp; |
| unsigned long uc_rsi; |
| unsigned long uc_rdi; |
| unsigned long uc_r8; |
| unsigned long uc_r9; |
| unsigned long uc_r10; |
| unsigned long uc_r11; |
| unsigned long uc_r12; |
| unsigned long uc_r13; |
| unsigned long uc_r14; |
| unsigned long uc_r15; |
| unsigned long uc_rip; |
| |
| union { |
| uc_xsave_fmt_t uc_flt_save; |
| |
| struct { |
| uc_m128a_t uc_header[2]; |
| uc_m128a_t uc_legacy[8]; |
| } uc_hdr; |
| } uc_flt; |
| |
| uc_m128a_t uc_xmm0; |
| uc_m128a_t uc_xmm1; |
| uc_m128a_t uc_xmm2; |
| uc_m128a_t uc_xmm3; |
| uc_m128a_t uc_xmm4; |
| uc_m128a_t uc_xmm5; |
| uc_m128a_t uc_xmm6; |
| uc_m128a_t uc_xmm7; |
| uc_m128a_t uc_xmm8; |
| uc_m128a_t uc_xmm9; |
| uc_m128a_t uc_xmm10; |
| uc_m128a_t uc_xmm11; |
| uc_m128a_t uc_xmm12; |
| uc_m128a_t uc_xmm13; |
| uc_m128a_t uc_xmm14; |
| uc_m128a_t uc_xmm15; |
| uc_m128a_t uc_vector_register[26]; |
| unsigned long uc_vector_control; |
| unsigned long uc_debug_control; |
| unsigned long uc_last_branch_to_rip; |
| unsigned long uc_last_branch_from_rip; |
| unsigned long uc_last_exception_to_rip; |
| unsigned long uc_last_exception_from_rip; |
| unsigned long uc_reserved[6]; |
| } mcontext_t; |
| |
| struct sigaltstack { |
| void * ss_sp; |
| int ss_flags; |
| size_t ss_size; |
| }; |
| |
| typedef struct __ucontext { |
| unsigned int uc_csize; |
| unsigned int uc_msize; |
| unsigned int uc_pad[2]; |
| unsigned long uc_flags; |
| unsigned long uc_opaquef[3]; |
| unsigned int uc_opaquec[8]; |
| unsigned long uc_reserved[32]; |
| unsigned long uc_align[2]; |
| stack_t uc_stack; |
| struct __ucontext * uc_link; |
| sigset_t uc_sigmask; |
| mcontext_t uc_mcontext; |
| } ucontext_t; |
| |
| #define SA_NOCLDSTOP 1 |
| #define SA_NOCLDWAIT 2 |
| #define SA_SIGINFO 4 |
| #define SA_ONSTACK 0x08000000 |
| #define SA_RESTART 0x10000000 |
| #define SA_NODEFER 0x40000000 |
| #define SA_RESETHAND 0x80000000 |
| #define SA_RESTORER 0x04000000 |
| |
| #endif |
| |
| #define SIGHUP 1 |
| #define SIGINT 2 |
| #define SIGQUIT 3 |
| #define SIGILL 4 |
| #define SIGTRAP 5 |
| #define SIGABRT 6 |
| #define SIGIOT SIGABRT |
| #define SIGBUS 7 |
| #define SIGFPE 8 |
| #define SIGKILL 9 |
| #define SIGUSR1 10 |
| #define SIGSEGV 11 |
| #define SIGUSR2 12 |
| #define SIGPIPE 13 |
| #define SIGALRM 14 |
| #define SIGTERM 15 |
| #define SIGSTKFLT 16 |
| #define SIGCHLD 17 |
| #define SIGCONT 18 |
| #define SIGSTOP 19 |
| #define SIGTSTP 20 |
| #define SIGTTIN 21 |
| #define SIGTTOU 22 |
| #define SIGURG 23 |
| #define SIGXCPU 24 |
| #define SIGXFSZ 25 |
| #define SIGVTALRM 26 |
| #define SIGPROF 27 |
| #define SIGWINCH 28 |
| #define SIGIO 29 |
| #define SIGPOLL 29 |
| #define SIGPWR 30 |
| #define SIGSYS 31 |
| #define SIGUNUSED SIGSYS |
| |
| #define _NSIG 65 |
| |