Reputation: 26
as you know, TBBmalloc doesn't return memory blocks to system. I'm using Visual leak detector to detect memory leak on my project. and I wonder how to detect memory leak in TBBmalloc. I want to see the callstack which of leaked memory blocks when program has exited like Visual leak detector do.
Is there another great tool for detection? , how to write code easily to detect memory leak?
Upvotes: 1
Views: 788
Reputation: 578
Intel Inspector able to detect memory leaks when TBBmalloc is used.
TBBmalloc doesn't return memory blocks to system.
It does since TBB 4.0. Hope your version is more fresh.
Upvotes: 1