blob: 28cfea028169a8c711e7849ad3ea9698d9bf656c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <errno.h>
#include <sys/signalfd.h>
#include <bits/ensure.h>
#include <mlibc/linux-sysdeps.hpp>
int signalfd(int fd, const sigset_t *mask, int flags) {
__ensure(fd == -1);
MLIBC_CHECK_OR_ENOSYS(mlibc::sys_signalfd_create, -1);
if(int e = mlibc::sys_signalfd_create(mask, flags, &fd); e) {
errno = e;
return -1;
}
return fd;
}
|