| 11372 | |
| 11373 | |
| 11374 | static int luaB_costatus (lua_State *L) { |
| 11375 | lua_State *co = lua_tothread(L, 1); |
| 11376 | luaL_argcheck(L, co, 1, "coroutine expected"); |
| 11377 | lua_pushstring(L, statnames[costatus(L, co)]); |
| 11378 | return 1; |
| 11379 | } |
| 11380 | |
| 11381 | |
| 11382 | static int auxresume (lua_State *L, lua_State *co, int narg) { |
nothing calls this directly
no test coverage detected