| 864 | |
| 865 | |
| 866 | static int alloc_count (lua_State *L) { |
| 867 | if (lua_isnone(L, 1)) |
| 868 | l_memcontrol.countlimit = ~0L; |
| 869 | else |
| 870 | l_memcontrol.countlimit = luaL_checkinteger(L, 1); |
| 871 | return 0; |
| 872 | } |
| 873 | |
| 874 | |
| 875 | static int alloc_failnext (lua_State *L) { |
nothing calls this directly
no test coverage detected