1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 12:08:14 +00:00

LibC: Added missing signal flags

Added missing signal flags to signal.h
This commit is contained in:
Brandon Scott 2019-11-16 02:37:39 -06:00 committed by Andreas Kling
parent f999e30afd
commit 48b1c82d53

View file

@ -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