Make all current allocations invisible except the given pointer.All allocations, except the given pointer, are made invisible; they won't show up anymore in the overview of allocated memory.
If you want to make all allocations invisible, just pass NULL as parameter.
Example:
Make allocations done in libc.so:__new_exitfn invisible.This makes the allocation done in __new_exitfn (libc.so) invisible because it is not freed until after all __cxa_atexit functions have been called and would therefore always falsely trigger a memory leak detection. This function can be called first thing in main().
Example:
References libcwd::make_invisible().
Make allocation pointed to by ptr invisible.The allocation pointed to by ptr is made invisible; it won't show up anymore in the overview of allocated memory.
Example:
References libcwd::channels::dc::core.
Referenced by libcwd::make_exit_function_list_invisible(), and libcwd::marker_ct::~marker_ct().
Make all future allocations invisible.All following allocations are made invisible; they won't show up anymore in the overview of allocated memory.
Example:
Note: In the threaded case, this isn't blazing fast (it is in the non-threaded case). You shouldn't use it inside tight loops when using libcwd_r.
Referenced by cwdebug_alloc(), and cwdebug_watch().