mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
30 lines
997 B
C
30 lines
997 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_
|
|
#include "libc/runtime/symbolic.h"
|
|
|
|
#define SA_NOCLDSTOP SYMBOLIC(SA_NOCLDSTOP)
|
|
#define SA_NOCLDWAIT SYMBOLIC(SA_NOCLDWAIT)
|
|
#define SA_NODEFER SYMBOLIC(SA_NODEFER)
|
|
#define SA_NOMASK SYMBOLIC(SA_NOMASK)
|
|
#define SA_ONESHOT SYMBOLIC(SA_ONESHOT)
|
|
#define SA_ONSTACK SYMBOLIC(SA_ONSTACK)
|
|
#define SA_RESETHAND SYMBOLIC(SA_RESETHAND)
|
|
#define SA_RESTART SYMBOLIC(SA_RESTART)
|
|
#define SA_SIGINFO SYMBOLIC(SA_SIGINFO)
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
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;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SA_H_ */
|