I am trying to detect if I have a memory leak on my AIX xlC compiled object. When using visual studio if I included CRTDBG_MAP_ALLOC it would give me some printout information regarding memory leaks. Does xlC have something similar to use when debugging?

link|improve this question

0% accept rate
feedback

1 Answer

If you're using malloc() based heap allocation, you can try to use MALLOCDEBUG.

Third party tools like Parasoft's Insure++ would give a more indepth analysis but its not free.

Let me know how it turns out!

link|improve this answer
1  
Valgrind, I think, has experimental support for some AIX versions. – STATUS_ACCESS_DENIED Apr 1 '11 at 22:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.