| 508 | |
| 509 | |
| 510 | static int luaB_costatus (lua_State *L) { |
| 511 | lua_State *co = lua_tothread(L, 1); |
| 512 | luaL_argcheck(L, co, 1, "coroutine expected"); |
| 513 | lua_pushstring(L, statnames[costatus(L, co)]); |
| 514 | return 1; |
| 515 | } |
| 516 | |
| 517 | |
| 518 | static int auxresume (lua_State *L, lua_State *co, int narg) { |
nothing calls this directly
no test coverage detected