OLD | NEW |
1 #include <sys/signalfd.h> | 1 #include <sys/signalfd.h> |
2 #include <signal.h> | 2 #include <signal.h> |
3 #include <errno.h> | 3 #include <errno.h> |
4 #include <fcntl.h> | 4 #include <fcntl.h> |
5 #include "syscall.h" | 5 #include "syscall.h" |
6 | 6 |
7 int signalfd(int fd, const sigset_t *sigs, int flags) | 7 int signalfd(int fd, const sigset_t* sigs, int flags) { |
8 { | 8 int ret = __syscall(SYS_signalfd4, fd, sigs, _NSIG / 8, flags); |
9 » int ret = __syscall(SYS_signalfd4, fd, sigs, _NSIG/8, flags); | |
10 #ifdef SYS_signalfd | 9 #ifdef SYS_signalfd |
11 » if (ret != -ENOSYS) return __syscall_ret(ret); | 10 if (ret != -ENOSYS) |
12 » ret = __syscall(SYS_signalfd, fd, sigs, _NSIG/8); | 11 return __syscall_ret(ret); |
13 » if (ret >= 0) { | 12 ret = __syscall(SYS_signalfd, fd, sigs, _NSIG / 8); |
14 » » if (flags & SFD_CLOEXEC) | 13 if (ret >= 0) { |
15 » » » __syscall(SYS_fcntl, ret, F_SETFD, FD_CLOEXEC); | 14 if (flags & SFD_CLOEXEC) |
16 » » if (flags & SFD_NONBLOCK) | 15 __syscall(SYS_fcntl, ret, F_SETFD, FD_CLOEXEC); |
17 » » » __syscall(SYS_fcntl, ret, F_SETFL, O_NONBLOCK); | 16 if (flags & SFD_NONBLOCK) |
18 » } | 17 __syscall(SYS_fcntl, ret, F_SETFL, O_NONBLOCK); |
| 18 } |
19 #endif | 19 #endif |
20 » return __syscall_ret(ret); | 20 return __syscall_ret(ret); |
21 } | 21 } |
OLD | NEW |