mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +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
22 lines
935 B
C
22 lines
935 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGSET_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGSET_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
typedef uint64_t sigset_t;
|
|
|
|
int sigaddset(sigset_t *, int) paramsnonnull();
|
|
int sigdelset(sigset_t *, int) paramsnonnull();
|
|
int sigemptyset(sigset_t *) paramsnonnull();
|
|
int sigfillset(sigset_t *) paramsnonnull();
|
|
int sigandset(sigset_t *, const sigset_t *, const sigset_t *) paramsnonnull();
|
|
int sigorset(sigset_t *, const sigset_t *, const sigset_t *) paramsnonnull();
|
|
int sigisemptyset(const sigset_t *) paramsnonnull() nosideeffect;
|
|
int sigismember(const sigset_t *, int) paramsnonnull() nosideeffect;
|
|
int sigcountset(const sigset_t *) paramsnonnull() nosideeffect;
|
|
int sigprocmask(int, const sigset_t *, sigset_t *);
|
|
int sigsuspend(const sigset_t *);
|
|
int sigpending(sigset_t *);
|
|
int pthread_sigmask(int, const sigset_t *, sigset_t *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGSET_H_ */
|