diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-16 17:35:07 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-16 17:35:07 -0300 |
commit | 87367e97f3c37796bb1ed4ec3e8f0b0df3b8d70e (patch) | |
tree | e31e5aacf2cee3b6d5f5a5c84fcc48828d14ee30 /lmem.h | |
parent | 06f08f5634158e2ae1e8964c0e4248d8bae0db8a (diff) | |
download | lua-87367e97f3c37796bb1ed4ec3e8f0b0df3b8d70e.tar.gz lua-87367e97f3c37796bb1ed4ec3e8f0b0df3b8d70e.tar.bz2 lua-87367e97f3c37796bb1ed4ec3e8f0b0df3b8d70e.zip |
more information about memory use
Diffstat (limited to 'lmem.h')
-rw-r--r-- | lmem.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lmem.h,v 1.11 1999/12/27 17:33:22 roberto Exp roberto $ | 2 | ** $Id: lmem.h,v 1.12 2000/01/13 16:30:47 roberto Exp roberto $ |
3 | ** Interface to Memory Manager | 3 | ** Interface to Memory Manager |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -36,6 +36,7 @@ void *luaM_growaux (lua_State *L, void *block, unsigned long nelems, int inc, in | |||
36 | #ifdef DEBUG | 36 | #ifdef DEBUG |
37 | extern unsigned long memdebug_numblocks; | 37 | extern unsigned long memdebug_numblocks; |
38 | extern unsigned long memdebug_total; | 38 | extern unsigned long memdebug_total; |
39 | extern unsigned long memdebug_maxmem; | ||
39 | #endif | 40 | #endif |
40 | 41 | ||
41 | 42 | ||