mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
27 lines
787 B
C
27 lines
787 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
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;
|
|
|
|
#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
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_ */
|