RetroArch/input/common/epoll_common.c

68 lines
1.7 KiB
C
Raw Normal View History

2016-01-10 03:33:01 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2013-2014 - pinumbernumber
2017-01-22 12:40:32 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2016-01-10 03:33:01 +00:00
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2015-11-30 17:05:10 +00:00
#include <stdio.h>
2015-11-30 17:14:07 +00:00
#include <errno.h>
#include <string.h>
2015-11-30 17:08:00 +00:00
#include <unistd.h>
2015-11-30 17:05:10 +00:00
2016-12-01 15:40:04 +00:00
#include <fcntl.h>
#include <sys/epoll.h>
2015-11-30 17:05:10 +00:00
#include "epoll_common.h"
2015-11-30 17:14:07 +00:00
#include "../../verbosity.h"
2016-12-01 15:42:21 +00:00
bool epoll_new(int *epoll_fd)
2015-11-30 17:05:10 +00:00
{
2016-12-01 15:40:04 +00:00
*epoll_fd = epoll_create(32);
if (*epoll_fd < 0)
2015-11-30 17:05:10 +00:00
return false;
return true;
}
2016-12-01 15:42:21 +00:00
void epoll_free(int *epoll_fd)
2015-11-30 17:05:10 +00:00
{
2016-12-01 15:40:04 +00:00
if (*epoll_fd >= 0)
close(*epoll_fd);
*epoll_fd = -1;
2015-11-30 17:05:10 +00:00
}
2015-11-30 17:08:00 +00:00
2016-12-01 15:40:04 +00:00
int epoll_waiting(int *epoll_fd, void *events, int maxevents, int timeout)
2015-11-30 17:08:00 +00:00
{
2016-12-01 15:40:04 +00:00
return epoll_wait(*epoll_fd, (struct epoll_event*)events, maxevents, timeout);
2015-11-30 17:08:00 +00:00
}
2015-11-30 17:14:07 +00:00
2016-12-01 15:40:04 +00:00
bool epoll_add(int *epoll_fd, int fd, void *device)
2015-11-30 17:14:07 +00:00
{
struct epoll_event event = {0};
event.events = EPOLLIN;
event.data.ptr = device;
/* Shouldn't happen, but just check it. */
2016-12-01 15:40:04 +00:00
if (epoll_ctl(*epoll_fd, EPOLL_CTL_ADD, fd, &event) < 0)
2015-11-30 17:14:07 +00:00
{
RARCH_ERR("Failed to add FD (%d) to epoll list (%s).\n",
fd, strerror(errno));
return false;
}
return true;
}