| 597 | |
| 598 | |
| 599 | static int luaB_corunning (lua_State *L) { |
| 600 | if (lua_pushthread(L)) |
| 601 | lua_pushnil(L); /* main thread is not a coroutine */ |
| 602 | return 1; |
| 603 | } |
| 604 | |
| 605 | |
| 606 | static const luaL_Reg co_funcs[] = { |
nothing calls this directly
no test coverage detected