0

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?

Kyle_109
  • 41
  • 1
  • 1
  • 7

1 Answers1

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