aboutsummaryrefslogtreecommitdiffstats
path: root/src/luaevent.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/luaevent.c')
-rw-r--r--src/luaevent.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/luaevent.c b/src/luaevent.c
index c9b5430..71188a6 100644
--- a/src/luaevent.c
+++ b/src/luaevent.c
@@ -89,9 +89,18 @@ static int luaevent_loop(lua_State* L) {
return 1;
}
+static int luaevent_loopexit(lua_State*L) {
+ le_base *base = event_base_get(L, 1);
+ struct timeval tv = { 0, 10 };
+ int ret = event_base_loopexit(base->base, &tv);
+ lua_pushinteger(L, ret);
+ return 1;
+}
+
static luaL_Reg base_funcs[] = {
{ "addevent", luaevent_addevent },
{ "loop", luaevent_loop },
+ { "loopexit", luaevent_loopexit },
{ NULL, NULL }
};