From a571dd1ac9fc4d46e0bbc95a3ab88f52ee37b1a1 Mon Sep 17 00:00:00 2001 From: ame Date: Fri, 3 May 2024 13:40:55 -0500 Subject: starting threads and deep copy metatables --- src/reg.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/reg.c') diff --git a/src/reg.c b/src/reg.c index a364813..966537f 100644 --- a/src/reg.c +++ b/src/reg.c @@ -5,6 +5,7 @@ #include "io.h" #include "math.h" #include "net.h" +#include "thread.h" #include #include @@ -44,6 +45,7 @@ int luaopen_llib(lua_State* L) { lreg("math", math_function_list); lreg("config", config_function_list); lreg("net", net_function_list); + lreg("thread", thread_function_list); //make llib global lua_setglobal(L, "llib"); -- cgit v1.2.3