| 430 | |
| 431 | |
| 432 | LUA_API void lua_close (lua_State *L) { |
| 433 | L = G(L)->mainthread; /* only the main thread can be closed */ |
| 434 | lua_lock(L); |
| 435 | close_state(L); |
| 436 | } |
| 437 | |
| 438 | |
| 439 | void luaE_warning (lua_State *L, const char *msg, int tocont) { |
no test coverage detected