etc/services - sync with NetBSD-8
[minix.git] / minix / lib / libc / sys / sigprocmask.c
blobb1906d79038063a8a5eb04599a2ffb85ffce35fc
1 #include <sys/cdefs.h>
2 #include <sys/types.h>
3 #include <sys/sigtypes.h>
4 #include <sys/signal.h>
5 #include <lib.h>
6 #include <string.h>
7 #include "namespace.h"
9 #include <string.h>
10 #include <signal.h>
12 int sigprocmask(how, set, oset)
13 int how;
14 const sigset_t *set;
15 sigset_t *oset;
17 message m;
19 memset(&m, 0, sizeof(m));
20 if (set == (sigset_t *) NULL) {
21 m.m_lc_pm_sigset.how = SIG_INQUIRE;
22 sigemptyset(&m.m_lc_pm_sigset.set);
23 } else {
24 m.m_lc_pm_sigset.how = how;
25 m.m_lc_pm_sigset.set = *set;
27 if (_syscall(PM_PROC_NR, PM_SIGPROCMASK, &m) < 0) return(-1);
28 if (oset != NULL) *oset = m.m_pm_lc_sigset.set;
30 return(m.m_type);
33 #if defined(__minix) && defined(__weak_alias)
34 __weak_alias(sigprocmask, __sigprocmask14)
35 #endif