/* * 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 #ifdef __linux__ #define USE_EPOLL #endif #ifdef USE_EPOLL #include #ifndef MAX_EVENTS #define MAX_EVENTS 64 #endif #else #include #endif #include #include #ifdef USE_EPOLL #define STATE_MT "util.poll" #else #define STATE_MT "util.poll