| 137 | |
| 138 | |
| 139 | LUAI_FUNC void luaE_incCstack (lua_State *L) { |
| 140 | L->nCcalls++; |
| 141 | if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS)) |
| 142 | luaE_checkcstack(L); |
| 143 | } |
| 144 | |
| 145 | |
| 146 | static void resetCI (lua_State *L) { |
nothing calls this directly
no test coverage detected