If you’re playing with blocks you can get debug information by using:
char *_Block_dump (block_t block);
It’s not in any public header so you’ll have to declare it yourself. It returns a debug string you can log and will give you the retain count of the block, whether it’s a global, stack or heap block and other information.
Leave a comment