~mmach/netext73/wasi-libc

« back to all changes in this revision

Viewing changes to libc-top-half/musl/include/signal.h

  • Committer: mmach
  • Date: 2023-09-12 15:53:36 UTC
  • Revision ID: netbit73@gmail.com-20230912155336-s1r5z5xnszz99zzo
0.0~git20230113.4362b18

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
#define SEGV_ACCERR 2
83
83
#define SEGV_BNDERR 3
84
84
#define SEGV_PKUERR 4
 
85
#define SEGV_MTEAERR 8
 
86
#define SEGV_MTESERR 9
85
87
 
86
88
#define BUS_ADRALN 1
87
89
#define BUS_ADRERR 2
183
185
#define sa_handler   __sa_handler.sa_handler
184
186
#define sa_sigaction __sa_handler.sa_sigaction
185
187
 
 
188
#define SA_UNSUPPORTED 0x00000400
 
189
#define SA_EXPOSE_TAGBITS 0x00000800
 
190
 
186
191
struct sigevent {
187
192
        union sigval sigev_value;
188
193
        int sigev_signo;
277
282
#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE)
278
283
#define NSIG _NSIG
279
284
typedef void (*sig_t)(int);
 
285
 
 
286
#define SYS_SECCOMP 1
 
287
#define SYS_USER_DISPATCH 2
280
288
#endif
281
289
 
282
290
#ifdef _GNU_SOURCE