OrionLibC
Barry Updating libc for pipes and signals ad9b6af (3 years, 1 month ago)
#include <sys/syscall.h>
#include <signal.h>
#include <errno.h>
/* Send a signal to a process */
int
sigprocmask(int how, const sigset_t *set, sigset_t *oldset)
{
int ret;
asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_SIGPROCMASK),
"c" (3), "S" (&how));
if (ret >= 0)
return ret;
errno = -ret;
return -1;
}