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

LibC: Implement sigwaitinfo()

This is implemented as a simple wrapper around sigtimedwait()
This commit is contained in:
Idan Horowitz 2021-12-12 01:02:08 +02:00
parent 762e047ec9
commit 640844c965
2 changed files with 7 additions and 0 deletions

View file

@ -28,6 +28,7 @@ int sigprocmask(int how, const sigset_t* set, sigset_t* old_set);
int sigpending(sigset_t*);
int sigsuspend(const sigset_t*);
int sigtimedwait(sigset_t const*, siginfo_t*, struct timespec const*);
int sigwaitinfo(sigset_t const*, siginfo_t*);
int raise(int sig);
int getsignalbyname(const char*);
const char* getsignalname(int);