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