bcc6f5cb9522022b1d7587f0ced547d91e60d483
[musl] / arch / mips / bits / signal.h
1 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
2  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
3
4 typedef struct {
5         unsigned __mc1[2];
6         unsigned long long __mc2[65];
7         unsigned __mc3[5];
8         unsigned long long __mc4[2];
9         unsigned __mc5[6];
10 } mcontext_t;
11
12 typedef struct __ucontext {
13         unsigned long uc_flags;
14         struct __ucontext *uc_link;
15         stack_t uc_stack;
16         mcontext_t uc_mcontext;
17         sigset_t uc_sigmask;
18         unsigned long uc_regspace[128];
19 } ucontext_t;
20
21 #define SA_NOCLDSTOP  1
22 #define SA_NOCLDWAIT  2
23 #define SA_SIGINFO    4
24 #define SA_ONSTACK    0x08000000
25 #define SA_RESTART    0x10000000
26 #define SA_NODEFER    0x40000000
27 #define SA_RESETHAND  0x80000000
28 #define SA_RESTORER   0x04000000
29
30 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
31 struct sigcontext
32 {
33         unsigned sc_regmask, sc_status;
34         unsigned long long sc_pc, sc_regs[32], sc_fpregs[32];
35         unsigned sc_ownedfp, sc_fpc_csr, sc_fpc_eir, sc_used_math, sc_dsp;
36         unsigned long long sc_mdhi, sc_mdlo;
37         unsigned long sc_hi1, sc_lo1, sc_hi2, sc_lo2, sc_hi3, sc_lo3;
38 };
39 #define NSIG      64
40 #endif
41
42 #endif
43
44 #define SIGHUP    1
45 #define SIGINT    2
46 #define SIGQUIT   3
47 #define SIGILL    4
48 #define SIGTRAP   5
49 #define SIGABRT   6
50 #define SIGIOT    SIGABRT
51 #define SIGSTKFLT 7
52 #define SIGFPE    8
53 #define SIGKILL   9
54 #define SIGBUS    10
55 #define SIGSEGV   11
56 #define SIGSYS    12
57 #define SIGPIPE   13
58 #define SIGALRM   14
59 #define SIGTERM   15
60 #define SIGUSR1   16
61 #define SIGUSR2   17
62 #define SIGCHLD   18
63 #define SIGPWR    19
64 #define SIGWINCH  20
65 #define SIGURG    21
66 #define SIGIO     22
67 #define SIGPOLL   SIGIO
68 #define SIGSTOP   23
69 #define SIGTSTP   24
70 #define SIGCONT   25
71 #define SIGTTIN   26
72 #define SIGTTOU   27
73 #define SIGVTALRM 28
74 #define SIGPROF   29
75 #define SIGXCPU   30
76 #define SIGXFSZ   31
77 #define SIGUNUSED SIGSYS