lua/lmem.h

42 lines
1.1 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
1999-08-17 00:52:00 +04:00
** $Id: lmem.h,v 1.8 1999/02/26 15:48:55 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Interface to Memory Manager
** See Copyright Notice in lua.h
*/
#ifndef lmem_h
#define lmem_h
1998-12-15 17:59:43 +03:00
#include <stdlib.h>
1997-09-16 23:25:59 +04: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"
#define arrEM "internal array bigger than `int' limit"
1997-09-16 23:25:59 +04:00
void *luaM_realloc (void *oldblock, unsigned long size);
1999-02-25 18:16:26 +03:00
void *luaM_growaux (void *block, unsigned long nelems, int inc, int size,
1999-08-17 00:52:00 +04:00
const char *errormsg, unsigned long limit);
1997-09-16 23:25:59 +04:00
#define luaM_free(b) luaM_realloc((b), 0)
#define luaM_malloc(t) luaM_realloc(NULL, (t))
#define luaM_new(t) ((t *)luaM_malloc(sizeof(t)))
#define luaM_newvector(n,t) ((t *)luaM_malloc((n)*sizeof(t)))
#define luaM_growvector(v,nelems,inc,t,e,l) \
((v)=(t *)luaM_growaux(v,nelems,inc,sizeof(t),e,l))
#define luaM_reallocvector(v,n,t) ((v)=(t *)luaM_realloc(v,(n)*sizeof(t)))
1997-09-16 23:25:59 +04:00
1997-11-26 21:53:45 +03:00
#ifdef DEBUG
extern unsigned long numblocks;
extern unsigned long totalmem;
1997-11-26 21:53:45 +03:00
#endif
1997-09-16 23:25:59 +04:00
#endif