1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2000-03-17 04:35:07 +08:00
|
|
|
** $Id: lmem.h,v 1.12 2000/01/13 16:30:47 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Interface to Memory Manager
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lmem_h
|
|
|
|
#define lmem_h
|
|
|
|
|
|
|
|
|
1998-12-15 22:59:43 +08:00
|
|
|
#include <stdlib.h>
|
1997-09-17 03:25:59 +08:00
|
|
|
|
1999-11-22 21:12:07 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
/* memory error messages */
|
|
|
|
#define codeEM "code size overflow"
|
|
|
|
#define constantEM "constant table overflow"
|
|
|
|
#define refEM "reference table overflow"
|
|
|
|
#define tableEM "table overflow"
|
|
|
|
#define memEM "not enough memory"
|
1999-12-28 01:33:22 +08:00
|
|
|
#define arrEM "internal array larger than `int' limit"
|
1997-09-17 03:25:59 +08:00
|
|
|
|
1999-11-22 21:12:07 +08:00
|
|
|
void *luaM_realloc (lua_State *L, void *oldblock, unsigned long size);
|
|
|
|
void *luaM_growaux (lua_State *L, void *block, unsigned long nelems, int inc, int size,
|
1999-08-17 04:52:00 +08:00
|
|
|
const char *errormsg, unsigned long limit);
|
1997-09-17 03:25:59 +08:00
|
|
|
|
1999-11-22 21:12:07 +08:00
|
|
|
#define luaM_free(L, b) luaM_realloc(L, (b), 0)
|
|
|
|
#define luaM_malloc(L, t) luaM_realloc(L, NULL, (t))
|
|
|
|
#define luaM_new(L, t) ((t *)luaM_malloc(L, sizeof(t)))
|
|
|
|
#define luaM_newvector(L, n,t) ((t *)luaM_malloc(L, (n)*sizeof(t)))
|
|
|
|
#define luaM_growvector(L, v,nelems,inc,t,e,l) \
|
|
|
|
((v)=(t *)luaM_growaux(L, v,nelems,inc,sizeof(t),e,l))
|
|
|
|
#define luaM_reallocvector(L, v,n,t) ((v)=(t *)luaM_realloc(L, v,(n)*sizeof(t)))
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
1997-11-27 02:53:45 +08:00
|
|
|
#ifdef DEBUG
|
2000-01-14 00:30:47 +08:00
|
|
|
extern unsigned long memdebug_numblocks;
|
|
|
|
extern unsigned long memdebug_total;
|
2000-03-17 04:35:07 +08:00
|
|
|
extern unsigned long memdebug_maxmem;
|
1997-11-27 02:53:45 +08:00
|
|
|
#endif
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|