1
1

Typo in the poll/epoll ops declaration.

Этот коммит содержится в:
George Bosilca 2015-01-06 21:21:25 -05:00
родитель a7c5ff2ace
Коммит bf62bed65f

Просмотреть файл

@ -77,10 +77,10 @@ extern const struct eventop evportops;
extern const struct eventop selectops; extern const struct eventop selectops;
#endif #endif
#if defined(_EVENT_HAVE_EPOLL) && _EVENT_HAVE_EPOLL #if defined(_EVENT_HAVE_EPOLL) && _EVENT_HAVE_EPOLL
extern const struct eventop pollops; extern const struct eventop epollops;
#endif #endif
#if defined(_EVENT_HAVE_POLL) && _EVENT_HAVE_POLL #if defined(_EVENT_HAVE_POLL) && _EVENT_HAVE_POLL
extern const struct eventop epollops; extern const struct eventop pollops;
#endif #endif
#if defined(_EVENT_HAVE_WORKING_KQUEUE) && _EVENT_HAVE_WORKING_KQUEUE #if defined(_EVENT_HAVE_WORKING_KQUEUE) && _EVENT_HAVE_WORKING_KQUEUE
extern const struct eventop kqops; extern const struct eventop kqops;