Overview
Comment: | OFKernelEventObserver: #if HAVE_* -> #ifdef HAVE_* |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
32e8c1ee4cc715b3b321ef92bc05b7f3 |
User & Date: | js on 2017-05-21 20:13:25 |
Other Links: | manifest | tags |
Context
2017-05-21
| ||
20:19 | Readd autogen.sh check-in: fa610dee8f user: js tags: trunk | |
20:13 | OFKernelEventObserver: #if HAVE_* -> #ifdef HAVE_* check-in: 32e8c1ee4c user: js tags: trunk | |
20:03 | Cast several socket-related arguments to void * check-in: c658e97994 user: js tags: trunk | |
Changes
Modified src/OFKernelEventObserver.m from [75fadf5f06] to [9bc4c1ecdf].
︙ | ︙ | |||
36 37 38 39 40 41 42 | #ifdef HAVE_KQUEUE # import "OFKernelEventObserver_kqueue.h" #endif #ifdef HAVE_EPOLL # import "OFKernelEventObserver_epoll.h" #endif | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #ifdef HAVE_KQUEUE # import "OFKernelEventObserver_kqueue.h" #endif #ifdef HAVE_EPOLL # import "OFKernelEventObserver_epoll.h" #endif #ifdef HAVE_POLL # import "OFKernelEventObserver_poll.h" #endif #ifdef HAVE_SELECT # import "OFKernelEventObserver_select.h" #endif #import "OFInitializationFailedException.h" #import "OFInvalidArgumentException.h" #import "OFOutOfRangeException.h" |
︙ | ︙ |