diff options
| author | ame <[email protected]> | 2024-05-03 13:40:55 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-05-03 13:40:55 -0500 |
| commit | 618263f6f85d08bfd85d4f0376663aa1e2f58eac (patch) | |
| tree | dbaffb5e488e0d0cf7f2fcb598ee2db1515aab05 /src/reg.c | |
| parent | 8740f3685e959d6477230cf4e8f33c7c93f9ea2b (diff) | |
starting threads and deep copy metatables
Diffstat (limited to 'src/reg.c')
| -rw-r--r-- | src/reg.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5,6 +5,7 @@ #include "io.h"
#include "math.h"
#include "net.h"
+#include "thread.h"
#include <signal.h>
#include <stdlib.h>
@@ -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");
|
