 |
Xyris
0.5
|
Go to the documentation of this file.
60 extern void*
malloc(
size_t);
61 extern void*
realloc(
void*,
size_t);
62 extern void*
calloc(
size_t,
size_t);
63 extern void free(
void*);
int liballoc_unlock()
This function unlocks what was previously locked by the liballoc_lock function. If it disabled interr...
int liballoc_free(void *, unsigned int)
This frees previously allocated memory. The void* parameter passed to the function is the exact same ...
void * realloc(void *, size_t)
void * liballoc_alloc(unsigned int)
This is the hook into the local system which allocates pages. It accepts an integer parameter which i...
int liballoc_lock()
This function is supposed to lock the memory data structures. It could be as simple as disabling inte...
void * calloc(size_t, size_t)