Lua53MT icon indicating copy to clipboard operation
Lua53MT copied to clipboard

Windows上的Lua5.3多线程版本:Multiple editon of Lua5.3 for Windows

Results 2 Lua53MT issues
Sort by recently updated
recently updated
newest added

`DeleteCriticalSection(&g->cri_sec)` 这一句应该放在 `(*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0);` 之前执行,而不是在之后

**以下是我修改你的test.lua代码:** ``` local xxx=0 local start = os.time() local function ff(n) for i=1,100000000,1 do xxx=xxx+1 end end local st1 = systhread.create(ff, 10) local st2 = systhread.create(ff, 10) local st3 =...