diff options
author | Max Kellermann <max@musicpd.org> | 2018-08-22 15:31:19 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-08-22 15:40:45 +0200 |
commit | dd461400fb5c759dc32c063254cf3154f6fb5b9d (patch) | |
tree | ec0edb3f8bbdff37642b14a456351f4e64d1c486 /src/system/EpollFD.cxx | |
parent | b1390ec27fdbf35ab53a50eedf0fd63b8ea55e1b (diff) |
system/EPollFD: rename to EpollFD
Diffstat (limited to 'src/system/EpollFD.cxx')
-rw-r--r-- | src/system/EpollFD.cxx | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/system/EpollFD.cxx b/src/system/EpollFD.cxx new file mode 100644 index 000000000..bd05008b2 --- /dev/null +++ b/src/system/EpollFD.cxx @@ -0,0 +1,32 @@ +/* + * Copyright 2003-2017 The Music Player Daemon Project + * 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. + */ + +#include "config.h" +#ifdef USE_EPOLL +#include "EpollFD.hxx" +#include "Error.hxx" + +EpollFD::EpollFD() + :fd(::epoll_create1(EPOLL_CLOEXEC)) +{ + if (fd < 0) + throw MakeErrno("epoll_create1() failed"); +} + +#endif /* USE_EPOLL */ |