1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2002-05-02 00:48:12 +04:00
|
|
|
** $Id: lmem.h,v 1.25 2001/11/28 20:13:13 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
|
|
|
|
|
|
|
|
|
2000-05-24 17:54:49 +04:00
|
|
|
#include <stddef.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2000-05-24 17:54:49 +04:00
|
|
|
#include "llimits.h"
|
1999-11-22 16:12:07 +03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2002-05-02 00:48:12 +04:00
|
|
|
#define MEMERRMSG "not enough memory"
|
|
|
|
|
|
|
|
|
2001-02-20 21:15:33 +03:00
|
|
|
void *luaM_realloc (lua_State *L, void *oldblock, lu_mem oldsize, lu_mem size);
|
2000-12-28 15:55:41 +03:00
|
|
|
|
2000-12-26 21:46:09 +03:00
|
|
|
void *luaM_growaux (lua_State *L, void *block, int *size, int size_elem,
|
2001-11-28 23:13:13 +03:00
|
|
|
int limit, const char *errormsg);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2000-12-28 15:55:41 +03:00
|
|
|
#define luaM_free(L, b, s) luaM_realloc(L, (b), (s), 0)
|
2001-09-07 21:30:16 +04:00
|
|
|
#define luaM_freelem(L, b) luaM_realloc(L, (b), sizeof(*(b)), 0)
|
2000-12-28 15:55:41 +03:00
|
|
|
#define luaM_freearray(L, b, n, t) luaM_realloc(L, (b), \
|
2001-08-31 23:46:07 +04:00
|
|
|
cast(lu_mem, n)*cast(lu_mem, sizeof(t)), 0)
|
2000-12-28 15:55:41 +03:00
|
|
|
|
|
|
|
#define luaM_malloc(L, t) luaM_realloc(L, NULL, 0, (t))
|
2001-08-31 23:46:07 +04:00
|
|
|
#define luaM_new(L, t) cast(t *, luaM_malloc(L, sizeof(t)))
|
|
|
|
#define luaM_newvector(L, n,t) cast(t *, luaM_malloc(L, \
|
|
|
|
cast(lu_mem, n)*cast(lu_mem, sizeof(t))))
|
2000-05-24 17:54:49 +04:00
|
|
|
|
2000-12-26 21:46:09 +03:00
|
|
|
#define luaM_growvector(L,v,nelems,size,t,limit,e) \
|
|
|
|
if (((nelems)+1) > (size)) \
|
2001-08-31 23:46:07 +04:00
|
|
|
((v)=cast(t *, luaM_growaux(L,v,&(size),sizeof(t),limit,e)))
|
2000-05-24 17:54:49 +04:00
|
|
|
|
2000-12-28 15:55:41 +03:00
|
|
|
#define luaM_reallocvector(L, v,oldn,n,t) \
|
2001-08-31 23:46:07 +04:00
|
|
|
((v)=cast(t *, luaM_realloc(L, v,cast(lu_mem, oldn)*cast(lu_mem, sizeof(t)), \
|
|
|
|
cast(lu_mem, n)*cast(lu_mem, sizeof(t)))))
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|