mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
17 lines
443 B
C
17 lines
443 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGACTION_LINUX_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGACTION_LINUX_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
struct sigset_linux {
|
|
uint32_t sig[2];
|
|
};
|
|
|
|
struct sigaction_linux {
|
|
intptr_t sa_handler;
|
|
uint64_t sa_flags;
|
|
void (*sa_restorer)(void);
|
|
struct sigset_linux sa_mask;
|
|
};
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGACTION_LINUX_H_ */
|