1 #ifndef __LUNALIBC_SYS_SIGNAL_H
2 #define __LUNALIBC_SYS_SIGNAL_H
4 #include <lunaix/signal.h>
8 signal(int signum, sighandler_t handler);
11 kill(pid_t pid, int signum);
17 sigaction(int signum, struct sigaction* action);
20 sigpending(sigset_t* set);
23 sigsuspend(const sigset_t* mask);
26 sigprocmask(int how, const sigset_t* set, sigset_t* oldset);
29 pthread_sigmask(int how, const sigset_t *restrict set,
30 sigset_t *restrict oset);
32 #endif /* __LUNALIBC_SIGNAL_H */