Differences From Artifact [a1c28950dc]:
- File src/OFKernelEventObserver_epoll.h — part of check-in [ed4a6f396b] at 2015-05-04 14:30:16 on branch trunk — Add OFKernelEventObserver_epoll (user: js, size: 735) [annotate] [blame] [check-ins using]
To Artifact [6c5bfc2bcc]:
- File src/OFKernelEventObserver_epoll.h — part of check-in [9e76144ef8] at 2015-06-13 22:26:05 on branch trunk — Add support for and use the new nullability (user: js, size: 783) [annotate] [blame] [check-ins using]
| ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | + + + + |
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "OFKernelEventObserver.h"
OF_ASSUME_NONNULL_BEGIN
@class OFMapTable;
@interface OFKernelEventObserver_epoll: OFKernelEventObserver
{
int _epfd;
OFMapTable *_FDToEvents;
}
@end
OF_ASSUME_NONNULL_END
|