** to be called by 'lua_checkstack' in protected mode, to grow stack ** capturing memory errors */
| 89 | ** capturing memory errors |
| 90 | */ |
| 91 | static void growstack (lua_State *L, void *ud) { |
| 92 | int size = *(int *)ud; |
| 93 | luaD_growstack(L, size); |
| 94 | } |
| 95 | |
| 96 | |
| 97 | LUA_API int lua_checkstack (lua_State *L, int n) { |
nothing calls this directly
no test coverage detected