1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:07:46 +00:00

LibC: Implement siginterrupt()

This is just a simple wrapper around the more-modern sigaction.
This commit is contained in:
Idan Horowitz 2023-12-25 15:43:56 +02:00 committed by Andreas Kling
parent 5e2fc52b25
commit 8bb423daf7
2 changed files with 15 additions and 0 deletions

View file

@ -28,6 +28,7 @@ int sigfillset(sigset_t*);
int sigaddset(sigset_t*, int sig);
int sigaltstack(stack_t const* ss, stack_t* old_ss);
int sigdelset(sigset_t*, int sig);
int siginterrupt(int sig, int flag);
int sigismember(sigset_t const*, int sig);
int sigprocmask(int how, sigset_t const* set, sigset_t* old_set);
int sigpending(sigset_t*);