![]() |
Functions | |
void | libcwd::make_invisible (void const *void_ptr) |
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. | |
void | libcwd::make_all_allocations_invisible_except (void const *ptr) |
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. |
Allocated memory blocks can be made invisible: They won't show up in the overview of allocated memory anymore. Even more, the corresponding alloc_ct is destroyed: find_alloc will not find them anymore. There is no other effect, test_delete will still work and they still can be deleted in the normal way.
void libcwd::make_all_allocations_invisible_except | ( | void const * | ptr | ) | [inline] |
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:
Debug( make_all_allocations_invisible_except(NULL) );
void libcwd::make_invisible | ( | void const * | void_ptr | ) | [inline] |
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:
Debug( make_invisible(p) );