| 408 | |
| 409 | |
| 410 | LUA_API void lua_close (lua_State *L) { |
| 411 | lua_lock(L); |
| 412 | L = G(L)->mainthread; /* only the main thread can be closed */ |
| 413 | close_state(L); |
| 414 | } |
| 415 | |
| 416 | |
| 417 | void luaE_warning (lua_State *L, const char *msg, int tocont) { |
no test coverage detected