![]() |
Arm MAP Metric Plugin Interface
Metric Plugin Interface for MAP
|
Async signal safe memory management functions for use in metric plugins. More...
#include <stdlib.h>
Go to the source code of this file.
Functions | |
Memory management functions | |
Async signal safe replacements for memory management functions. Since metric library functions need to be async signal safe the standard libc memory management functions (such as | |
void * | allinea_safe_malloc (size_t size) |
An async-signal-safe version of malloc . More... | |
void | allinea_safe_free (void *ptr) |
An async-signal-safe version of free . More... | |
void * | allinea_safe_calloc (size_t nmemb, size_t size) |
An async-signal-safe version of calloc . More... | |
void * | allinea_safe_realloc (void *ptr, size_t size) |
An async-signal-safe version of realloc . More... | |
Async signal safe memory management functions for use in metric plugins.