|
MoveIt Pro API
Core Behaviors for MoveIt Pro
|
#include "malloc_counter/malloc_counter.hpp"#include <dlfcn.h>#include <locale.h>#include <pthread.h>#include <stdatomic.h>#include <stdint.h>#include <stdio.h>#include <stdlib.h>#include <string.h>
Classes | |
| struct | OriginalFunctions |
Typedefs | |
| using | malloc_type = void *(size_t) |
| using | free_type = void(void *) |
| using | realloc_type = void *(void *, size_t) |
| using | calloc_type = void *(size_t, size_t) |
Functions | |
| size_t | malloc_count_current () |
| size_t | malloc_count_peak () |
| void | malloc_count_reset_peak () |
| size_t | malloc_count_num_allocs () |
| void | malloc_count_print_status () |
| void | malloc_count_set_callback (malloc_count_callback_type *, void *) |
| void | malloc_count_start_monitoring () |
| void | malloc_count_stop_monitoring () |
| size_t | malloc_count_thread_allocs () |
| void * | malloc (size_t size) |
| void | free (void *ptr) |
| void * | calloc (size_t nmemb, size_t size) |
| void * | realloc (void *ptr, size_t size) |
Variables | |
| constexpr size_t | initHeapSize = 4096 * 4096 |
| using calloc_type = void*(size_t, size_t) |
| using free_type = void(void*) |
| using malloc_type = void*(size_t) |
| using realloc_type = void*(void*, size_t) |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
constexpr |