MoveIt Pro API
Core Behaviors for MoveIt Pro
Loading...
Searching...
No Matches
malloc_counter.cpp File Reference
#include "malloc_counter/malloc_counter.hpp"
#include <dlfcn.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <array>
Include dependency graph for malloc_counter.cpp:

Classes

struct  OriginalFunctions
 
struct  Allocations
 
struct  CallbackInfo
 

Typedefs

using malloc_type = void *(size_t)
 
using free_type = void(void *)
 
using realloc_type = void *(void *, size_t)
 
using CallbackFnType = void *
 

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 *cb, CallbackFnType cookie)
 
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 threadSafeGccIntrinsics = 0
 
OriginalFunctions originalFunctions
 
constexpr size_t initHeapSize = 2048 * 2048
 
char initHeap [initHeapSize]
 
size_t initHeapUse = 0
 
thread_local Allocations allocations
 
thread_local CallbackInfo callbackInfo
 

Typedef Documentation

◆ CallbackFnType

using CallbackFnType = void*

◆ free_type

using free_type = void(void*)

◆ malloc_type

using malloc_type = void*(size_t)

◆ realloc_type

using realloc_type = void*(void*, size_t)

Function Documentation

◆ calloc()

void * calloc ( size_t  nmemb,
size_t  size 
)
extern

◆ free()

void free ( void *  ptr)
extern

◆ malloc()

void * malloc ( size_t  size)
extern

◆ malloc_count_current()

size_t malloc_count_current ( void  )
extern

◆ malloc_count_num_allocs()

size_t malloc_count_num_allocs ( void  )
extern

◆ malloc_count_peak()

size_t malloc_count_peak ( void  )
extern

◆ malloc_count_print_status()

void malloc_count_print_status ( void  )
extern

◆ malloc_count_reset_peak()

void malloc_count_reset_peak ( void  )
extern

◆ malloc_count_set_callback()

void malloc_count_set_callback ( malloc_count_callback_type cb,
CallbackFnType  cookie 
)

◆ realloc()

void * realloc ( void *  ptr,
size_t  size 
)
extern

Variable Documentation

◆ allocations

thread_local Allocations allocations

◆ callbackInfo

thread_local CallbackInfo callbackInfo

◆ initHeap

char initHeap[initHeapSize]
inline

◆ initHeapSize

constexpr size_t initHeapSize = 2048 * 2048
constexpr

◆ initHeapUse

size_t initHeapUse = 0
inline

◆ originalFunctions

OriginalFunctions originalFunctions
inline

◆ threadSafeGccIntrinsics

constexpr size_t threadSafeGccIntrinsics = 0
constexpr