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?
Asked
Active
Viewed 279 times
1 Answers
0
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!

CoreyStup
- 1,488
- 13
- 14
-
1Valgrind, I think, has experimental support for some AIX versions. – 0xC0000022L Apr 01 '11 at 22:03