Differences From Artifact [ba6ed69d4a]:
- File src/OFKernelEventObserver_select.h — part of check-in [bbe4040126] at 2015-05-04 20:34:57 on branch trunk — Refactor OFKernelEventObserver (user: js, size: 913) [annotate] [blame] [check-ins using]
To Artifact [ff27d287c3]:
- File src/OFKernelEventObserver_select.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: 961) [annotate] [blame] [check-ins using]
| ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + + + + |
#endif
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#import "OFKernelEventObserver.h"
OF_ASSUME_NONNULL_BEGIN
@interface OFKernelEventObserver_select: OFKernelEventObserver
{
fd_set _readFDs, _writeFDs;
int _maxFD;
}
@end
OF_ASSUME_NONNULL_END
|