37 #include <maloc/maloc_base.h>
68 #if !defined(VINLINE_MALOC)
78 int Vmem_bytesTotal(
void);
79 int Vmem_mallocBytesTotal(
void);
80 int Vmem_freeBytesTotal(
void);
81 int Vmem_highWaterTotal(
void);
82 int Vmem_mallocAreasTotal(
void);
83 void Vmem_printTotal(
void);
85 Vmem* Vmem_ctor(
char *name);
86 void Vmem_dtor(
Vmem **thee);
88 void *Vmem_malloc(
Vmem *thee,
int num,
int size);
89 void Vmem_free(
Vmem *thee,
int num,
int size,
void **ram);
90 void *Vmem_realloc(
Vmem *thee,
int num,
int size,
void **ram,
93 int Vmem_bytes(
Vmem *thee);
94 int Vmem_mallocBytes(
Vmem *thee);
95 int Vmem_freeBytes(
Vmem *thee);
96 int Vmem_highWater(
Vmem *thee);
97 int Vmem_mallocAreas(
Vmem *thee);
98 void Vmem_print(
Vmem *thee);