From 04aa101da3dc40c92b1c3ce8e3503367d9dcc5f2 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 27 Feb 2022 14:36:43 +0100 Subject: util.poll: Expose API (epoll or select) used Could he handy to know for debugging or decisions --- teal-src/util/poll.d.tl | 5 +++++ util-src/poll.c | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/teal-src/util/poll.d.tl b/teal-src/util/poll.d.tl index 7e346161..28fd982b 100644 --- a/teal-src/util/poll.d.tl +++ b/teal-src/util/poll.d.tl @@ -19,6 +19,11 @@ local record lib new : function () : state ENOENT : integer EEXIST : integer + enum api_backend + "epoll" + "select" + end + api : api_backend end return lib diff --git a/util-src/poll.c b/util-src/poll.c index be0f6ffd..4bd897ae 100644 --- a/util-src/poll.c +++ b/util-src/poll.c @@ -14,8 +14,10 @@ #if defined(__linux__) #define USE_EPOLL +#define POLL_BACKEND "epoll" #else #define USE_SELECT +#define POLL_BACKEND "select" #endif #ifdef USE_EPOLL @@ -31,12 +33,7 @@ #include #include -#ifdef USE_EPOLL -#define STATE_MT "util.poll" -#endif -#ifdef USE_SELECT -#define STATE_MT "util.poll