mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 23:37:35 +00:00
LibC: Implement sigwait()
This is done internally by just calling the more modern sigtimedwait syscall and then massaging the results to fit sigwait's interface.
This commit is contained in:
parent
640844c965
commit
656b1dd6be
2 changed files with 12 additions and 0 deletions
|
@ -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 sigwait(sigset_t const*, int*);
|
||||
int sigwaitinfo(sigset_t const*, siginfo_t*);
|
||||
int raise(int sig);
|
||||
int getsignalbyname(const char*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue