2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2022-08-05 21:50:08 +00:00
|
|
|
extern const uint64_t SA_NOCLDSTOP;
|
|
|
|
extern const uint64_t SA_NOCLDWAIT;
|
|
|
|
extern const uint64_t SA_NODEFER;
|
|
|
|
extern const uint64_t SA_NOMASK;
|
|
|
|
extern const uint64_t SA_ONESHOT;
|
|
|
|
extern const uint64_t SA_ONSTACK;
|
|
|
|
extern const uint64_t SA_RESETHAND;
|
|
|
|
extern const uint64_t SA_RESTART;
|
|
|
|
extern const uint64_t SA_SIGINFO;
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2023-06-09 06:44:03 +00:00
|
|
|
#define SA_NOCLDSTOP SA_NOCLDSTOP
|
|
|
|
#define SA_NOCLDWAIT SA_NOCLDWAIT
|
|
|
|
#define SA_NODEFER SA_NODEFER
|
|
|
|
#define SA_NOMASK SA_NOMASK
|
|
|
|
#define SA_ONESHOT SA_ONESHOT
|
|
|
|
#define SA_ONSTACK SA_ONSTACK
|
|
|
|
#define SA_RESETHAND SA_RESETHAND
|
|
|
|
#define SA_RESTART SA_RESTART
|
|
|
|
#define SA_SIGINFO SA_SIGINFO
|
|
|
|
|
2020-06-15 14:18:57 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_ */
|