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/thread.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/thread.h (limited to 'src/thread.h') diff --git a/src/thread.h b/src/thread.h new file mode 100644 index 0000000..d25b448 --- /dev/null +++ b/src/thread.h @@ -0,0 +1,9 @@ +#include "lua.h" + +int l_async(lua_State*); + +static const luaL_Reg thread_function_list [] = { + {"async",l_async}, + + {NULL,NULL} +}; -- cgit v1.2.3