Class Vmem: A safer, object-oriented, malloc/free object. More...
#include <maloc/maloc_base.h>
Go to the source code of this file.
Data Structures | |
struct | Vmem |
Class Vmem: Definition. More... | |
Typedefs | |
typedef struct Vmem | Vmem |
Class Vmem: Definition. | |
Functions | |
VEXTERNC size_t | Vmem_bytesTotal (void) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_mallocBytesTotal (void) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_freeBytesTotal (void) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_highWaterTotal (void) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_mallocAreasTotal (void) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC void | Vmem_printTotal (void) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC Vmem * | Vmem_ctor (char *name) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC void | Vmem_dtor (Vmem **thee) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC void * | Vmem_malloc (Vmem *thee, size_t num, size_t size) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC void | Vmem_free (Vmem *thee, size_t num, size_t size, void **ram) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC void * | Vmem_realloc (Vmem *thee, size_t num, size_t size, void **ram, size_t newNum) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_bytes (Vmem *thee) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_mallocBytes (Vmem *thee) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_freeBytes (Vmem *thee) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_highWater (Vmem *thee) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC size_t | Vmem_mallocAreas (Vmem *thee) |
Class Vmem: Non-Inlineable method (vmem.c) | |
VEXTERNC void | Vmem_print (Vmem *thee) |
Class Vmem: Non-Inlineable method (vmem.c) |
Class Vmem: A safer, object-oriented, malloc/free object.
* * MALOC = < Minimal Abstraction Layer for Object-oriented C > * Copyright (C) 1994--2008 Michael Holst * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *
Definition in file vmem.h.