aboutsummaryrefslogtreecommitdiff
path: root/src/lua/thread/luaopen_Thread.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-08-18 17:18:47 +0800
committerchai <chaifix@163.com>2018-08-18 17:18:47 +0800
commit398966630f99329021d4335d819326e27a9d49df (patch)
tree72868e26389f784f4abfb24110ffbd2385d67753 /src/lua/thread/luaopen_Thread.cpp
parent2fb51a71e53b4fc7bd4058d3a5a6f39fa81c345a (diff)
*update
Diffstat (limited to 'src/lua/thread/luaopen_Thread.cpp')
-rw-r--r--src/lua/thread/luaopen_Thread.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lua/thread/luaopen_Thread.cpp b/src/lua/thread/luaopen_Thread.cpp
index 5d44c30..3277704 100644
--- a/src/lua/thread/luaopen_Thread.cpp
+++ b/src/lua/thread/luaopen_Thread.cpp
@@ -192,17 +192,17 @@ namespace lua
}
static const luaL_Reg thread_function[] = {
- { "__gc", l_thread_gc },
- { "start", l_start },
- { "wait", l_wait },
- { "send", l_send },
- { "receive", l_receive },
- { "fetch", l_fetch },
- { "demand", l_demand },
- { "remove", l_remove },
- { "getName", l_getName },
+ { "__gc", l_thread_gc },
+ { "start", l_start },
+ { "wait", l_wait },
+ { "send", l_send },
+ { "receive", l_receive },
+ { "fetch", l_fetch },
+ { "demand", l_demand },
+ { "remove", l_remove },
+ { "getName", l_getName },
{ "isRunning", l_isRunning },
- { 0, 0 }
+ { 0, 0 }
};
static int luaopen_Thread(lua_State* L)