blob: 60a440b4c5078d507bf38e6d93c47b69afe4c788 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#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);
}
|