Differences From Artifact [73fb41141f]:
- File
src/OFKernelEventObserver_epoll.m
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 5538) [annotate] [blame] [check-ins using]
To Artifact [7c101cdbc0]:
- File src/OFKernelEventObserver_epoll.m — part of check-in [cc4cb0d824] at 2017-05-02 21:10:33 on branch trunk — exceptions: Add nullability specifiers (user: js, size: 5628) [annotate] [blame] [check-ins using]
| ︙ | |||
47 48 49 50 51 52 53 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | - + + - + + - + + |
self = [super init];
@try {
struct epoll_event event;
#ifdef HAVE_EPOLL_CREATE1
if ((_epfd = epoll_create1(EPOLL_CLOEXEC)) == -1)
|
| ︙ |