mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-31 01:43:02 +08:00
move macro define ZMQ_USE_POLLSET
to the position between ZMQ_USE_DEVPOLL
and ZMQ_USE_POLL
This commit is contained in:
parent
55442699ef
commit
bdf887fd74
@ -30,20 +30,20 @@
|
||||
#ifndef __ZMQ_POLLER_HPP_INCLUDED__
|
||||
#define __ZMQ_POLLER_HPP_INCLUDED__
|
||||
|
||||
#if defined ZMQ_USE_KQUEUE + defined ZMQ_USE_POLLSET \
|
||||
+ defined ZMQ_USE_EPOLL + defined ZMQ_USE_DEVPOLL \
|
||||
+ defined ZMQ_USE_POLL + defined ZMQ_USE_SELECT > 1
|
||||
#if defined ZMQ_USE_KQUEUE + defined ZMQ_USE_EPOLL \
|
||||
+ defined ZMQ_USE_DEVPOLL + defined ZMQ_USE_POLLSET \
|
||||
+ defined ZMQ_USE_POLL + defined ZMQ_USE_SELECT > 1
|
||||
#error More than one of the ZMQ_USE_* macros defined
|
||||
#endif
|
||||
|
||||
#if defined ZMQ_USE_KQUEUE
|
||||
# include "kqueue.hpp"
|
||||
#elif defined ZMQ_USE_POLLSET
|
||||
# include "pollset.hpp"
|
||||
#elif defined ZMQ_USE_EPOLL
|
||||
# include "epoll.hpp"
|
||||
#elif defined ZMQ_USE_DEVPOLL
|
||||
# include "devpoll.hpp"
|
||||
#elif defined ZMQ_USE_POLLSET
|
||||
# include "pollset.hpp"
|
||||
#elif defined ZMQ_USE_POLL
|
||||
# include "poll.hpp"
|
||||
#elif defined ZMQ_USE_SELECT
|
||||
|
Loading…
x
Reference in New Issue
Block a user