GMemVTable

A set of functions used to perform memory allocation. The same #GMemVTable must be used for all allocations in the same program; a call to g_mem_set_vtable(), if it exists, should be prior to any use of GLib.

Members

Variables

calloc
void* function(size_t nBlocks, size_t nBlockBytes) calloc;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
free
void function(void* mem) free;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
malloc
void* function(size_t nBytes) malloc;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
realloc
void* function(void* mem, size_t nBytes) realloc;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
tryMalloc
void* function(size_t nBytes) tryMalloc;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
tryRealloc
void* function(void* mem, size_t nBytes) tryRealloc;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta