| 11460 | |
| 11461 | |
| 11462 | static int luaB_corunning (lua_State *L) { |
| 11463 | if (lua_pushthread(L)) |
| 11464 | lua_pushnil(L); /* main thread is not a coroutine */ |
| 11465 | return 1; |
| 11466 | } |
| 11467 | |
| 11468 | |
| 11469 | static const luaL_Reg co_funcs[] = { |
nothing calls this directly
no test coverage detected