mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.poll: Expose API (epoll or select) used
Could he handy to know for debugging or decisions
This commit is contained in:
parent
22d734e305
commit
04aa101da3
2 changed files with 11 additions and 6 deletions
|
@ -19,6 +19,11 @@ local record lib
|
||||||
new : function () : state
|
new : function () : state
|
||||||
ENOENT : integer
|
ENOENT : integer
|
||||||
EEXIST : integer
|
EEXIST : integer
|
||||||
|
enum api_backend
|
||||||
|
"epoll"
|
||||||
|
"select"
|
||||||
|
end
|
||||||
|
api : api_backend
|
||||||
end
|
end
|
||||||
|
|
||||||
return lib
|
return lib
|
||||||
|
|
|
@ -14,8 +14,10 @@
|
||||||
|
|
||||||
#if defined(__linux__)
|
#if defined(__linux__)
|
||||||
#define USE_EPOLL
|
#define USE_EPOLL
|
||||||
|
#define POLL_BACKEND "epoll"
|
||||||
#else
|
#else
|
||||||
#define USE_SELECT
|
#define USE_SELECT
|
||||||
|
#define POLL_BACKEND "select"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USE_EPOLL
|
#ifdef USE_EPOLL
|
||||||
|
@ -31,12 +33,7 @@
|
||||||
#include <lualib.h>
|
#include <lualib.h>
|
||||||
#include <lauxlib.h>
|
#include <lauxlib.h>
|
||||||
|
|
||||||
#ifdef USE_EPOLL
|
#define STATE_MT "util.poll<" POLL_BACKEND ">"
|
||||||
#define STATE_MT "util.poll<epoll>"
|
|
||||||
#endif
|
|
||||||
#ifdef USE_SELECT
|
|
||||||
#define STATE_MT "util.poll<select>"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (LUA_VERSION_NUM == 501)
|
#if (LUA_VERSION_NUM == 501)
|
||||||
#define luaL_setmetatable(L, tname) luaL_getmetatable(L, tname); lua_setmetatable(L, -2)
|
#define luaL_setmetatable(L, tname) luaL_getmetatable(L, tname); lua_setmetatable(L, -2)
|
||||||
|
@ -487,6 +484,9 @@ int luaopen_util_poll(lua_State *L) {
|
||||||
push_errno(EEXIST);
|
push_errno(EEXIST);
|
||||||
push_errno(ENOENT);
|
push_errno(ENOENT);
|
||||||
|
|
||||||
|
lua_pushliteral(L, POLL_BACKEND);
|
||||||
|
lua_setfield(L, -2, "api");
|
||||||
|
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue