| 343 | |
| 344 | |
| 345 | LUA_API int lua_resetthread (lua_State *L) { |
| 346 | int status; |
| 347 | lua_lock(L); |
| 348 | status = luaE_resetthread(L, L->status); |
| 349 | lua_unlock(L); |
| 350 | return status; |
| 351 | } |
| 352 | |
| 353 | |
| 354 | LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { |
no test coverage detected