blob: e399e7c7eb1e7acfadbf3678e14d2eb1412cf3a9 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <errno.h>
#include <signal.h>
#include <unistd.h>
#include <sysdep-cancel.h>
#define __sigprocmask(how, set, oset) \
INLINE_SYSCALL (rt_sigprocmask, 4, how, set, oset, _NSIG / 8)
#include <sysdeps/posix/pause.c>
|