1997-09-16 12:25:59 -07:00
|
|
|
/*
|
1999-12-27 09:33:22 -08:00
|
|
|
** $Id: lmem.h,v 1.10 1999/11/22 13:12:07 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Interface to Memory Manager
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lmem_h
|
|
|
|
#define lmem_h
|
|
|
|
|
|
|
|
|
1998-12-15 06:59:43 -08:00
|
|
|
#include <stdlib.h>
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-16 12:25:59 -07: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-27 09:33:22 -08:00
|
|
|
#define arrEM "internal array larger than `int' limit"
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1999-11-22 05: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-16 13:52:00 -07:00
|
|
|
const char *errormsg, unsigned long limit);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1999-11-22 05: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-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
1997-11-26 10:53:45 -08:00
|
|
|
#ifdef DEBUG
|
1997-12-01 12:30:44 -08:00
|
|
|
extern unsigned long numblocks;
|
|
|
|
extern unsigned long totalmem;
|
1997-11-26 10:53:45 -08:00
|
|
|
#endif
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|