diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-24 13:15:49 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-24 13:15:49 -0300 |
commit | 98296f6b45208e32a83dcb582b3a37b406289d85 (patch) | |
tree | 777b65e4a8a6da1d5f907ec5d4d2e6df5a3e9ae6 /llimits.h | |
parent | 23b79c5945023a661754e45c58595f89c84d4800 (diff) | |
download | lua-98296f6b45208e32a83dcb582b3a37b406289d85.tar.gz lua-98296f6b45208e32a83dcb582b3a37b406289d85.tar.bz2 lua-98296f6b45208e32a83dcb582b3a37b406289d85.zip |
some bugs related to stack reallocation
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.65 2005/03/09 16:28:07 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.66 2005/08/04 13:37:10 roberto Exp roberto $ |
3 | ** Limits, basic types, and some other `installation-dependent' definitions | 3 | ** Limits, basic types, and some other `installation-dependent' definitions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -103,4 +103,13 @@ typedef lu_int32 Instruction; | |||
103 | #endif | 103 | #endif |
104 | 104 | ||
105 | 105 | ||
106 | /* | ||
107 | ** macro to control inclusion of some hard tests on stack reallocation | ||
108 | */ | ||
109 | #ifndef HARDSTACKTESTS | ||
110 | #define condhardstacktests(x) ((void)0) | ||
111 | #else | ||
112 | #define condhardstacktests(x) x | ||
113 | #endif | ||
114 | |||
106 | #endif | 115 | #endif |