/* * Lua polling library * Copyright (C) 2017-2018 Kim Alvefur * * This project is MIT licensed. Please see the * COPYING file in the source package for more information. * */ #include #include #include #if defined(__linux__) #define USE_EPOLL #else #define USE_SELECT #endif #ifdef USE_EPOLL #include #ifndef MAX_EVENTS #define MAX_EVENTS 64 #endif #endif #ifdef USE_SELECT #include #endif #include #include #ifdef USE_EPOLL #define STATE_MT "util.poll" #endif #ifdef USE_SELECT #define STATE_MT "util.poll