2013-11-28 11:37:23 +01:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2013-11-28 11:37:23 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2020-10-19 14:14:32 +02:00
|
|
|
#ifndef EVENT_BACKEND_HXX
|
|
|
|
#define EVENT_BACKEND_HXX
|
2013-11-28 11:37:23 +01:00
|
|
|
|
2020-10-13 16:11:57 +02:00
|
|
|
#include "event/Features.h"
|
2018-11-19 12:49:45 +01:00
|
|
|
|
2020-10-12 12:50:05 +02:00
|
|
|
#ifdef _WIN32
|
2013-11-28 11:37:23 +01:00
|
|
|
|
2020-10-19 14:14:32 +02:00
|
|
|
#include "WinSelectBackend.hxx"
|
|
|
|
using EventPollBackend = WinSelectBackend;
|
2013-11-29 09:38:48 +01:00
|
|
|
|
2020-10-12 12:50:05 +02:00
|
|
|
#elif defined(USE_EPOLL)
|
|
|
|
|
2020-10-19 14:14:32 +02:00
|
|
|
#include "EpollBackend.hxx"
|
|
|
|
using EventPollBackend = EpollBackend;
|
2020-10-12 12:50:05 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2020-10-19 14:14:32 +02:00
|
|
|
#include "PollBackend.hxx"
|
|
|
|
using EventPollBackend = PollBackend;
|
2020-10-12 12:50:05 +02:00
|
|
|
|
2013-11-30 09:45:56 +01:00
|
|
|
#endif
|
|
|
|
|
2013-11-28 11:37:23 +01:00
|
|
|
#endif
|