| 417 | |
| 418 | |
| 419 | LUA_API void lua_close (lua_State *L) { |
| 420 | lua_lock(L); |
| 421 | L = G(L)->mainthread; /* only the main thread can be closed */ |
| 422 | close_state(L); |
| 423 | } |
| 424 | |
| 425 | |
| 426 | void luaE_warning (lua_State *L, const char *msg, int tocont) { |
no test coverage detected