mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
LibC: Added missing signal flags
Added missing signal flags to signal.h
This commit is contained in:
parent
f999e30afd
commit
48b1c82d53
Notes:
sideshowbarker
2024-07-19 11:12:09 +09:00
Author: https://github.com/xeons
Commit: 48b1c82d53
Pull-request: https://github.com/SerenityOS/serenity/pull/788
Reviewed-by: https://github.com/awesomekling ✅
1 changed files with 7 additions and 0 deletions
|
@ -44,6 +44,13 @@ extern const char* sys_siglist[NSIG];
|
|||
#define SA_NOCLDSTOP 1
|
||||
#define SA_NOCLDWAIT 2
|
||||
#define SA_SIGINFO 4
|
||||
#define SA_ONSTACK 0x08000000
|
||||
#define SA_RESTART 0x10000000
|
||||
#define SA_NODEFER 0x40000000
|
||||
#define SA_RESETHAND 0x80000000
|
||||
|
||||
#define SA_NOMASK SA_NODEFER
|
||||
#define SA_ONESHOT SA_RESETHAND
|
||||
|
||||
#define SIG_BLOCK 0
|
||||
#define SIG_UNBLOCK 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue