diff options
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -339,7 +339,7 @@ int luaE_resetthread (lua_State *L, int status) { | |||
339 | } | 339 | } |
340 | 340 | ||
341 | 341 | ||
342 | LUA_API int lua_resetthread (lua_State *L, lua_State *from) { | 342 | LUA_API int lua_closethread (lua_State *L, lua_State *from) { |
343 | int status; | 343 | int status; |
344 | lua_lock(L); | 344 | lua_lock(L); |
345 | L->nCcalls = (from) ? getCcalls(from) : 0; | 345 | L->nCcalls = (from) ? getCcalls(from) : 0; |
@@ -349,6 +349,14 @@ LUA_API int lua_resetthread (lua_State *L, lua_State *from) { | |||
349 | } | 349 | } |
350 | 350 | ||
351 | 351 | ||
352 | /* | ||
353 | ** Deprecated! Use 'lua_closethread' instead. | ||
354 | */ | ||
355 | LUA_API int lua_resetthread (lua_State *L) { | ||
356 | return lua_closethread(L, NULL); | ||
357 | } | ||
358 | |||
359 | |||
352 | LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { | 360 | LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { |
353 | int i; | 361 | int i; |
354 | lua_State *L; | 362 | lua_State *L; |