diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-05 17:08:01 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-05 17:08:01 -0200 |
commit | a894499566b80a5af20a410d2940f8ea25a5f471 (patch) | |
tree | 591206f1c17a1d6b61c87b31cd6b063cfee76bd4 /ltests.h | |
parent | d1fc6244f0bb4d042bb48a4121255f87692afd15 (diff) | |
download | lua-a894499566b80a5af20a410d2940f8ea25a5f471.tar.gz lua-a894499566b80a5af20a410d2940f8ea25a5f471.tar.bz2 lua-a894499566b80a5af20a410d2940f8ea25a5f471.zip |
details
Diffstat (limited to 'ltests.h')
-rw-r--r-- | ltests.h | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: $ | 2 | ** $Id: ltests.h,v 1.1 2001/02/02 15:12:25 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 | */ |
@@ -8,8 +8,6 @@ | |||
8 | #define ltests_h | 8 | #define ltests_h |
9 | 9 | ||
10 | 10 | ||
11 | #include "llimits.h" | ||
12 | |||
13 | 11 | ||
14 | #define LUA_DEBUG | 12 | #define LUA_DEBUG |
15 | 13 | ||
@@ -23,10 +21,10 @@ | |||
23 | 21 | ||
24 | 22 | ||
25 | /* memory allocator control variables */ | 23 | /* memory allocator control variables */ |
26 | extern mem_int memdebug_numblocks; | 24 | extern unsigned long memdebug_numblocks; |
27 | extern mem_int memdebug_total; | 25 | extern unsigned long memdebug_total; |
28 | extern mem_int memdebug_maxmem; | 26 | extern unsigned long memdebug_maxmem; |
29 | extern mem_int memdebug_memlimit; | 27 | extern unsigned long memdebug_memlimit; |
30 | 28 | ||
31 | 29 | ||
32 | /* test for lock/unlock */ | 30 | /* test for lock/unlock */ |