diff options
Diffstat (limited to 'klibc/klibc/SYSCALLS.def')
-rw-r--r-- | klibc/klibc/SYSCALLS.def | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/klibc/klibc/SYSCALLS.def b/klibc/klibc/SYSCALLS.def index 3918bcb012..e8b9a7f176 100644 --- a/klibc/klibc/SYSCALLS.def +++ b/klibc/klibc/SYSCALLS.def @@ -146,13 +146,15 @@ ssize_t pwrite64,pwrite::pwrite(int, void *, size_t, off_t) ; Signal operations ; int kill(pid_t, int) +; We really should get rid of the non-rt_* of these, but that takes +; sanitizing <signal.h> for all architectures, sigh... <?> int sigaction(int, const struct sigaction *, struct sigaction *) -int rt_sigaction(int, const struct sigaction *, struct sigaction *, size_t) <?> int sigsuspend(const sigset_t *) +<?> int sigpending(sigset_t *) +<?> int sigprocmask(int, const sigset_t *, sigset_t *) +int rt_sigaction(int, const struct sigaction *, struct sigaction *, size_t) int rt_sigsuspend(const sigset_t *, size_t) -<?> int sigpending(sigset_t) int rt_sigpending(sigset_t *, size_t) -<?> int sigprocmask(int, const sigset_t *, sigset_t *) int rt_sigprocmask(int, const sigset_t *, sigset_t *, size_t) <?> unsigned int alarm(unsigned int) int getitimer(int, struct itimerval *) |