poller.hpp 1.45 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
3 4 5 6

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
7
    the terms of the GNU Lesser General Public License as published by
8 9 10 11 12 13
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    0MQ is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU Lesser General Public License for more details.
15

16
    You should have received a copy of the GNU Lesser General Public License
17 18 19 20 21 22
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __ZMQ_POLLER_HPP_INCLUDED__
#define __ZMQ_POLLER_HPP_INCLUDED__

23
#include "platform.hpp"
24

25 26 27 28 29 30 31
#if   defined ZMQ_USE_KQUEUE  + defined ZMQ_USE_EPOLL \
    + defined ZMQ_USE_DEVPOLL + 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
32
#include "kqueue.hpp"
33
#elif defined ZMQ_USE_EPOLL
34
#include "epoll.hpp"
35
#elif defined ZMQ_USE_DEVPOLL
36
#include "devpoll.hpp"
37
#elif defined ZMQ_USE_POLL
38
#include "poll.hpp"
39
#elif defined ZMQ_USE_SELECT
40
#include "select.hpp"
41
#else
42 43 44 45 46 47 48
#error None of the ZMQ_USE_* macros defined
#endif

#if defined ZMQ_USE_SELECT
#define ZMQ_POLL_BASED_ON_SELECT
#else
#define ZMQ_POLL_BASED_ON_POLL
49 50 51
#endif

#endif