blob: 60a440b4c5078d507bf38e6d93c47b69afe4c788 (
plain) (
tree)
|
|
#include <signal.h>
#include <errno.h>
#include <pthread.h>
#include "syscall.h"
int pthread_sigmask(int how, const sigset_t *set, sigset_t *old)
{
if (how > 2U) return EINVAL;
return -__syscall(SYS_rt_sigprocmask, how, set, old, 8);
}
|