minix/lib/nbsd_libc/sys-minix/sigprocmask.c
Gianluca Guida 4f294c247f Add NBSDLibc Minix specific files.
This patch mainly copies and modifies files existing in
the current libc implementing minix specific functions.

To keep consisten with the NetBSD libc, we remove 
namespace stubs and we use "namespace.h" and weak
links.
2011-02-17 17:11:09 +00:00

25 lines
452 B
C

#include <sys/cdefs.h>
#include <lib.h>
#include "namespace.h"
#include <signal.h>
int sigprocmask(how, set, oset)
int how;
const sigset_t *set;
sigset_t *oset;
{
message m;
if (set == (sigset_t *) NULL) {
m.m2_i1 = SIG_INQUIRE;
m.m2_l1 = 0;
} else {
m.m2_i1 = how;
m.m2_l1 = (long) *set;
}
if (_syscall(PM_PROC_NR, SIGPROCMASK, &m) < 0) return(-1);
if (oset != (sigset_t *) NULL) *oset = (sigset_t) (m.m2_l1);
return(m.m_type);
}