| 516 | |
| 517 | |
| 518 | static int luaB_costatus (lua_State *L) { |
| 519 | lua_State *co = lua_tothread(L, 1); |
| 520 | luaL_argcheck(L, co, 1, "coroutine expected"); |
| 521 | lua_pushstring(L, statnames[costatus(L, co)]); |
| 522 | return 1; |
| 523 | } |
| 524 | |
| 525 | |
| 526 | static int auxresume (lua_State *L, lua_State *co, int narg) { |
nothing calls this directly
no test coverage detected