diff options
Diffstat (limited to 'ltests.h')
-rw-r--r-- | ltests.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.h,v 2.43 2014/12/06 20:42:58 roberto Exp roberto $ | 2 | ** $Id: ltests.h,v 2.44 2014/12/09 15:00:17 roberto Exp roberto $ |
3 | ** Internal Header for Debugging of the Lua Implementation | 3 | ** Internal Header for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -101,6 +101,11 @@ LUA_API void *debug_realloc (void *ud, void *block, | |||
101 | #define MINSTRTABSIZE 2 | 101 | #define MINSTRTABSIZE 2 |
102 | 102 | ||
103 | 103 | ||
104 | /* make stack-overflow tests run faster */ | ||
105 | #undef LUAI_MAXSTACK | ||
106 | #define LUAI_MAXSTACK 50000 | ||
107 | |||
108 | |||
104 | #undef LUAI_USER_ALIGNMENT_T | 109 | #undef LUAI_USER_ALIGNMENT_T |
105 | #define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; } | 110 | #define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; } |
106 | 111 | ||