You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
361 B
13 lines
361 B
// User modifiable memory allocator.
|
|
|
|
#ifndef _CL_MALLOC_H
|
|
#define _CL_MALLOC_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
// Function like malloc() which returns aligned memory of size (> 0) bytes.
|
|
extern void* (*cl_malloc_hook) (size_t size);
|
|
// Function like free() which makes available for reuse such memory.
|
|
extern void (*cl_free_hook) (void* ptr);
|
|
|
|
#endif /* _CL_MALLOC_H */
|