vote up 3 vote down star

Hello, I fear that some of my code is causing memory leaks, and I'm not sure about how to check it. Is there a tool or something for MacOS X?

Thank you

flag

3 Answers

vote up 2 vote down check

Apple has a good description of how to use MallocDebug on OS X on their developer pages.

link|flag
vote up 1 vote down

Of course UNIX provides a quick and dirty way of detecting memory leaks... top.

Launch your app and watch the system memory allocated to your process over time. If it continually grows when it shouldn't then there is likely a memory leak. At which point you break out Valgrind or use MallocDebug, etc.

Of course if you use smart pointers and/or RAII, then you shouldn't have memory leaks in your code, right? ;)))

link|flag
Yes, in fact I'm trying to check if my implementation of smart pointers is working correctly :) – tunnuz Feb 4 at 8:48
Any reason for not using boost::scoped_ptr or boost::shared_ptr ?? – ceretullis Feb 5 at 0:18
vote up 4 vote down

Yes - there's an application called MallocDebug which is installed as part of the Xcode package.

You can find it in the /Developer/Applications/Performance Tools folder.

link|flag

Your Answer

Get an OpenID
or

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