| 19 | |
| 20 | |
| 21 | static lua_State *getco (lua_State *L) { |
| 22 | lua_State *co = lua_tothread(L, 1); |
| 23 | luaL_argcheck(L, co, 1, "thread expected"); |
| 24 | return co; |
| 25 | } |
| 26 | |
| 27 | |
| 28 | static int auxresume (lua_State *L, lua_State *co, int narg) { |
no test coverage detected