Vuo
0.5.5
|
VuoHeap interface.
Macros | |
#define | VuoRegister(heapPointer, deallocate) |
Registers heapPointer to be reference-counted and stores its deallocate function (unless heapPointer is null or is already being reference-counted). | |
Typedefs | |
typedef void(* | DeallocateFunctionType )(void *) |
A type for destructor functions, such as free(void *) , which are used to deallocate reference-counted memory when it's no longer in use. | |
Functions | |
void | VuoHeap_init (void) |
Initializes the reference-counting system. | |
void | VuoHeap_fini (void) |
Cleans up the reference-counting system. | |
int | VuoRegisterF (const void *heapPointer, DeallocateFunctionType deallocate, const char *file, unsigned int line, const char *func, const char *pointerName) |
Instead of this function, you probably want to use VuoRegister(). | |
int | VuoRetain (const void *heapPointer) |
Increments the reference count for heapPointer (unless heapPointer is not being reference-counted). | |
int | VuoRelease (const void *heapPointer) |
Decrements the reference count for heapPointer (unless heapPointer is not being reference-counted). | |
const char * | VuoHeap_getDescription (const void *heapPointer) |
Returns a description of the specified heapPointer: the file, line, and function where VuoRegister() was called, and the variable name. | |
void VuoHeap_fini | ( | void | ) |
Cleans up the reference-counting system.
To be called once, after all other reference-counting function calls.
const char* VuoHeap_getDescription | ( | const void * | heapPointer | ) |
Returns a description of the specified heapPointer: the file, line, and function where VuoRegister() was called, and the variable name.
The returned string is still owned by VuoHeap; you should not free it.
void VuoHeap_init | ( | void | ) |
Initializes the reference-counting system.
To be called once, before any other reference-counting function calls.
int VuoRegisterF | ( | const void * | heapPointer, |
DeallocateFunctionType | deallocate, | ||
const char * | file, | ||
unsigned int | line, | ||
const char * | func, | ||
const char * | pointerName | ||
) |
Instead of this function, you probably want to use VuoRegister().
This function is used to implement the VuoRegister() macro.
Registers heapPointer to be reference-counted and stores its deallocate function (unless heapPointer is null or is already being reference-counted).
heapPointer | A pointer to allocated memory on the heap. |
deallocate | The function to be used to deallocate the memory when the reference count gets back to its original value of 0. |
file | The name of the file in which VuoRegister() is called. |
line | The line in the file in which VuoRegister() is called. |
func | The function in which VuoRegister() is called. |
pointerName | The stringified pointer variable name. |