mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-02 19:09:16 +00:00
syscalls: Add signal_action_flags_t structure
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -367,6 +367,17 @@ typedef enum
|
||||
__SYS_SIG_SETMASK = 2
|
||||
} signal_actions_t;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
__SYS_SA_NOCLDSTOP = 1,
|
||||
__SYS_SA_ONSTACK = 0x08000000,
|
||||
__SYS_SA_RESETHAND = 0x80000000,
|
||||
__SYS_SA_RESTART = 0x10000000,
|
||||
__SYS_SA_SIGINFO = 4,
|
||||
__SYS_SA_NOCLDWAIT = 2,
|
||||
__SYS_SA_NODEFER = 0x40000000,
|
||||
} signal_action_flags_t;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
__SYS_SIG_ERR = -1,
|
||||
|
Reference in New Issue
Block a user