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