How do you detect/avoid Memory leaks in your (Unmanaged) code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T04:01:46Zhttp://stackoverflow.com/feeds/question/45627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code30How do you detect/avoid Memory leaks in your (Unmanaged) code?Prakash2008-09-05T12:18:00Z2009-08-28T14:44:13Z
<p>In unmanaged C/C++ code, what are the best practices to detect memory leaks? And coding guidelines to avoid? (As if it's that simple ;)</p>
<p>We have used a bit of a silly way in the past: having a counter increment for every memory allocation call and decrement while freeing. At the end of the program, the counter value should be zero.</p>
<p>I know this is not a great way and there are a few catches. (For instance, if you are freeing memory which was allocated by a platform API call, your allocation count will not exactly match your freeing count. Of course, then we incremented the counter when calling API calls that allocated memory.)</p>
<p>I am expecting your experiences, suggestions and maybe some references to tools which simplify this.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45633#456331Answer by IainMH for How do you detect/avoid Memory leaks in your (Unmanaged) code?IainMH2008-09-05T12:22:31Z2008-09-05T12:22:31Z<p>Never used it myself, but my C friends tell me <a href="http://en.wikipedia.org/wiki/IBM_Rational_Purify" rel="nofollow">Purify</a>.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45635#456352Answer by Paul Tomblin for How do you detect/avoid Memory leaks in your (Unmanaged) code?Paul Tomblin2008-09-05T12:22:51Z2008-09-05T12:22:51Z<p>There are various replacement "malloc" libraries out there that will allow you to call a function at the end and it will tell you about all the unfreed memory, and in many cases, who malloced (or new'ed) it in the first place.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45636#4563633Answer by Jordi Bunster for How do you detect/avoid Memory leaks in your (Unmanaged) code?Jordi Bunster2008-09-05T12:22:55Z2008-09-05T12:22:55Z<p>If your C/C++ code is portable to Linux, few things are better than <a href="http://valgrind.org/info/about.html" rel="nofollow">Valgrind</a>.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45637#456371Answer by aku for How do you detect/avoid Memory leaks in your (Unmanaged) code?aku2008-09-05T12:23:44Z2008-09-05T12:23:44Z<p>Working on Motorola cell phones operating system, we hijacked memory allocation library to observe all memory allocations. It helped to find a lot of problems with memory allocations.
Since prevention is better then curing, I would recommend to use static analysis tool like <a href="http://www.klocwork.com/products/insight.asp" rel="nofollow">Klockwork</a> or <a href="http://www.gimpel.com" rel="nofollow">Lint</a></p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45639#456391Answer by Rob Wells for How do you detect/avoid Memory leaks in your (Unmanaged) code?Rob Wells2008-09-05T12:24:02Z2008-09-05T12:39:53Z<p>Are you counting the allocs and frees by interpolating your own syscall functions which record the calls and then pass the call to the real function?</p>
<p>This is the only way you can keep track of calls originating from code that you haven't written.</p>
<p>Have a look at the man page for ld.so. Or ld.so.1 on some systems.</p>
<p>Also do Google LD_PRELOAD and you'll find some interesting articles explaining the technique over on www.itworld.com.</p>
<p>HTH</p>
<p>cheers,</p>
<p>Rob</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45645#4564515Answer by Huppie for How do you detect/avoid Memory leaks in your (Unmanaged) code?Huppie2008-09-05T12:26:42Z2008-09-05T12:26:42Z<p>As a C++ Developer here's some simply guidelines:</p>
<ol>
<li>Use pointers only when absolutely necessary</li>
<li>If you need a pointer, doublecheck if a <a href="http://ootips.org/yonat/4dev/smart-pointers.html" rel="nofollow">SmartPointer</a> is a possibility</li>
<li>Use the GRASP <a href="http://en.wikipedia.org/wiki/GRASP_(Object_Oriented_Design)#Creator" rel="nofollow">Creator</a> pattern.</li>
</ol>
<p>As for the detection of memory leaks personally I've always used <a href="http://www.codeproject.com/KB/applications/visualleakdetector.aspx" rel="nofollow">Visual Leak Detector</a> and find it to be very useful.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45652#456523Answer by Serge for How do you detect/avoid Memory leaks in your (Unmanaged) code?Serge2008-09-05T12:28:12Z2009-08-28T14:44:13Z<p>Microsoft VC++ in debug mode shows memory leaks, although it doesn't show where your leaks are.</p>
<p>If you are using C++ you can you can always avoid using new explicitly: you have vector, string, auto<code>_</code>ptr and shared<code>_</code>ptr in your arsenal.</p>
<p>When new is unavoidable, try to hide it in a constructor (and hide delete in a destructor); the same works for 3rd party APIs.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45709#457093Answer by Herms for How do you detect/avoid Memory leaks in your (Unmanaged) code?Herms2008-09-05T12:50:16Z2008-09-05T12:50:16Z<p>If you're using Visual Studio it might be worth looking at <a href="http://www.compuware.com/products/devpartner/visualc.htm" rel="nofollow">Bounds Checker</a>. It's not free, but it's been incredibly helpful in finding leaks in my code. It doesn't just do memory leaks either, but also GDI resource leaks, WinAPI usage errors, and other stuff. It'll even show you where the leaked memory was initialized, making it much easier to track down the leak.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45717#457174Answer by John Sibly for How do you detect/avoid Memory leaks in your (Unmanaged) code?John Sibly2008-09-05T12:54:00Z2008-09-05T12:54:00Z<p>If you're using MS VC++, I can highly recommend this free tool from the codeproject:
<a href="http://www.codeproject.com/KB/applications/leakfinder.aspx" rel="nofollow">leakfinder</a> by Jochen Kalmbach.</p>
<p>You simply add the class to your project, and call</p>
<pre><code>InitAllocCheck(ACOutput_XML)
DeInitAllocCheck()
</code></pre>
<p>before and after the code you want to check for leaks.</p>
<p>Once you've build and run the code, Jochen provides a neat GUI tool where you can load the resulting .xmlleaks file, and navigate through the call stack where each leak was generated to hunt down the offending line of code. </p>
<p>Rational's (now owned by IBM) PurifyPlus illustrates leaks in a similar fashion, but I find the leakfinder tool actually easier to use, with the bonus of it not costing several thousand dollars!</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45721#4572110Answer by Skizz for How do you detect/avoid Memory leaks in your (Unmanaged) code?Skizz2008-09-05T12:55:54Z2008-09-05T12:55:54Z<p>I've been using DevStudio for far too many years now and it always amazes me just how many programmers don't know about the memory analysis tools that are available in the debug run time libraries. Here's a few links to get started with:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/3e5ey7y1.aspx" rel="nofollow">Tracking Heap Allocation Requests</a> - specifically the section on Unique Allocation Request Numbers</p>
<p><a href="http://msdn.microsoft.com/en-us/library/5at7yxcs.aspx" rel="nofollow">_CrtSetDbgFlag</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/4wth1ha5.aspx" rel="nofollow">_CrtSetBreakAlloc</a></p>
<p>Of course, if you're not using DevStudio then this won't be particularly helpful.</p>
<p>Skizz</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45767#457671Answer by Dan Shield for How do you detect/avoid Memory leaks in your (Unmanaged) code?Dan Shield2008-09-05T13:12:12Z2008-09-05T13:12:12Z<p>At least for MS VC++, the C Runtime library has several functions that I've found helpful in the past. Check the MSDN help for the <code>_Crt*</code> functions.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45943#4594322Answer by Leon Timmermans for How do you detect/avoid Memory leaks in your (Unmanaged) code?Leon Timmermans2008-09-05T14:38:15Z2008-09-05T14:38:15Z<p>In C++: use RAII. Smart pointers like std::auto_ptr, boost::shared_ptr, boost::scoped_ptr and boost::weak_ptr are your friends.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45951#459510Answer by jbl for How do you detect/avoid Memory leaks in your (Unmanaged) code?jbl2008-09-05T14:42:50Z2008-09-05T14:42:50Z<p>Valgrind is a nice option for Linux. Under MacOS X, you can enable the MallocDebug library which has several options for debugging memory allocation problems (see the malloc manpage, the "ENVIRONMENT" section has the relevant details). The OS X SDK also includes a tool called MallocDebug (usually installed in /Developer/Applications/Performance Tools/) that can help you to monitor usage and leaks.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45963#459632Answer by Mark for How do you detect/avoid Memory leaks in your (Unmanaged) code?Mark2008-09-05T14:49:18Z2008-09-05T14:49:18Z<p>I think that there is no easy answer to this question. How you might really approach this solution depends on your requirements. Do you need a cross platform solution? Are you using new/delete or malloc/free (or both)? Are you really looking for just "leaks" or do you want better protection, such as detecting buffer overruns (or underruns)?</p>
<p>If you are working on the windows side, the MS debug runtime libraries have some basic debug detection functionality, and as another has already pointed out, there are several wrappers that can be included in your source to help with leak detection. Finding a package that can work with both new/delete and malloc/free obviously gives you more flexibility.</p>
<p>I don't know enough about the unix side to provide help, although again, others have.</p>
<p>But beyond just leak detection, there is the notion of detecting memory corruption via buffer overruns (or underruns). This type of debug functionality is I think more difficult than plain leak detection. This type of system is also further complicated if you are working with C++ objects because polymorhpic classes can be deleted in varying ways causing trickiness in determining the true base pointer that is being deleted. I know of no good "free" system that does decent protection for overruns. we have written a system (cross platform) and found it to be pretty challenging.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/46360#463602Answer by Thomas Kammeyer for How do you detect/avoid Memory leaks in your (Unmanaged) code?Thomas Kammeyer2008-09-05T17:31:04Z2008-09-05T17:31:04Z<p>I'd like to offer something I've used at times in the past: a rudimentary leak checker which is source level and fairly automatic.
I'm giving this away for three reasons:</p>
<ol>
<li><p>You might find it useful.</p></li>
<li><p>Though it's a bit krufty, I don't let that embarass me.</p></li>
<li><p>Even though it's tied to some win32 hooks, that should be easy to alleviate.</p></li>
</ol>
<p>There are things of which you must be careful when using it: don't do anything that needs to lean on <code>new</code> in the underlying code, beware of the warnings about cases it might miss at the top of leakcheck.cpp, realize that if you turn on (and fix any issues with) the code that does image dumps, you may generate a huge file.</p>
<p>The design is meant to allow you to turn the checker on and off without recompiling everything that includes its header. Include leakcheck.h where you want to track checking and rebuild once. Thereafter, compile leakcheck.cpp with or without LEAKCHECK #define'd and then relink to turn it on and off. Including unleakcheck.h will turn it off locally in a file. Two macros are provided: CLEARALLOCINFO() will avoid reporting the same file and line inappropriately when you traverse allocating code that didn't include leakcheck.h. ALLOCFENCE() just drops a line in the generated report without doing any allocation.</p>
<p>Again, please realize that I haven't used this in a while and you may have to work with it a bit. I'm dropping it in to illustrate the idea. If there turns out to be sufficient interest, I'd be willing to work up an example, updating the code in the process, and replace the contents of the following URL with something nicer that includes a decently syntax-colored listing.</p>
<p>You can find it here: <a href="http://www.cse.ucsd.edu/~tkammeye/leakcheck.html" rel="nofollow">http://www.cse.ucsd.edu/~tkammeye/leakcheck.html</a></p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/47351#473511Answer by tonylo for How do you detect/avoid Memory leaks in your (Unmanaged) code?tonylo2008-09-06T09:16:38Z2008-09-06T09:16:38Z<p>In terms of avoiding leaks the following post has some advice:</p>
<p><a href="http://beta.stackoverflow.com/questions/27492/c-memory-management" rel="nofollow">http://beta.stackoverflow.com/questions/27492/c-memory-management</a></p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/47358#473580Answer by DrPizza for How do you detect/avoid Memory leaks in your (Unmanaged) code?DrPizza2008-09-06T09:35:46Z2008-09-06T09:35:46Z<p>Detect:</p>
<p>Debug CRT</p>
<p>Avoid:</p>
<p>Smart pointers, boehm GC</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/47381#473810Answer by Jim Buck for How do you detect/avoid Memory leaks in your (Unmanaged) code?Jim Buck2008-09-06T10:57:43Z2008-09-06T10:57:43Z<p>I asked this question here: <a href="http://beta.stackoverflow.com/questions/25730/what-is-the-best-free-memory-leak-detector-for-a-cc-program-and-its-plug-in-dlls" rel="nofollow">http://beta.stackoverflow.com/questions/25730/what-is-the-best-free-memory-leak-detector-for-a-cc-program-and-its-plug-in-dlls</a> and had great success with <a href="http://www.codeproject.com/KB/applications/visualleakdetector.aspx" rel="nofollow">Visual Leak Detector</a>.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/47873#478732Answer by Andy Brice for How do you detect/avoid Memory leaks in your (Unmanaged) code?Andy Brice2008-09-06T22:08:48Z2008-09-06T22:08:48Z<p>We bought a load of Windows Purify licences at my last job. But it was a total waste of time and money. It was so flaky that you wonder if they 'ate their own dogfood'. It is a shame, because the original Purify for Unix was great - before Rational bought it.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/50095#5009516Answer by Dusty Campbell for How do you detect/avoid Memory leaks in your (Unmanaged) code?Dusty Campbell2008-09-08T16:30:57Z2008-10-01T16:21:48Z<p>If you are using Visual Studio, Microsoft provides some useful functions for detecting and debugging memory leaks.</p>
<p>I would start with this set of articles:
<a href="http://msdn.microsoft.com/en-us/library/x98tx3cf(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/x98tx3cf(VS.71).aspx</a></p>
<p>Here is the quick summary of those articles. First, include these headers:</p>
<pre><code>#define CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
</code></pre>
<p>Then you need to call this when your program exists:</p>
<pre><code>_CrtDumpMemoryLeaks();
</code></pre>
<p>Alternatively, if your program does not exit in the same place every time, you can call this at the start of your program:</p>
<pre><code>_CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
</code></pre>
<p>Now when the program exits all the allocations that were not freed will be printed in the Output Window along with the file they were allocated in and the allocation occurrence.</p>
<p>This strategy works for most programs. However, it becomes difficult or impossible in certain cases. Using third party libraries that do some initialization on startup may cause other objects to appear in the memory dump and can make tracking down your leaks difficult. Also, if any of your classes have members with the same name as any of the memory allocation routines( such as malloc ), the CRT debug macros will cause problems.</p>
<p>There are other techniques explained in the MSDN link referenced above that could be used as well.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/51614#516140Answer by ap for How do you detect/avoid Memory leaks in your (Unmanaged) code?ap2008-09-09T11:08:28Z2008-09-09T11:08:28Z<p><a href="http://www.klocwork.com/freetrial/" rel="nofollow">http://www.klocwork.com/freetrial/</a></p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/60988#609881Answer by Josh Matthews for How do you detect/avoid Memory leaks in your (Unmanaged) code?Josh Matthews2008-09-13T23:37:31Z2008-09-13T23:37:31Z<p><a href="http://www.paulnettle.com/" rel="nofollow">Paul Nettle's mmgr</a> is a long time favourite tool of mine. You include mmgr.h in your source files, define TEST_MEMORY, and it delivers a textfile full of memory problems that occurred during a run of your app.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/63461#634610Answer by yrp for How do you detect/avoid Memory leaks in your (Unmanaged) code?yrp2008-09-15T14:35:40Z2008-09-15T14:35:40Z<p>My take on the subject: <a href="http://msinilo.pl/blog/?cat=7" rel="nofollow">http://msinilo.pl/blog/?cat=7</a> (tested on real-life, BIG applications).</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/70290#702901Answer by Weidenrinde for How do you detect/avoid Memory leaks in your (Unmanaged) code?Weidenrinde2008-09-16T08:15:39Z2008-09-16T08:15:39Z<p>For Linux:
Try <a href="http://code.google.com/p/google-perftools/" rel="nofollow">Google Perftools</a></p>
<p>There are a lot of tools that do similar alloc/free counting, the pros of Goolge Perftools:</p>
<ul>
<li>Quite fast (in comparison to valgrind: very fast)</li>
<li>Comes with nice graphical display of results</li>
<li>Has other useful capabilities: cpu-profiling, memory-usage profiling...</li>
</ul>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/70304#703041Answer by Weidenrinde for How do you detect/avoid Memory leaks in your (Unmanaged) code?Weidenrinde2008-09-16T08:17:48Z2008-09-16T08:17:48Z<p>General Coding Guideline: </p>
<ul>
<li>Resources should be deallocated at the same "layer" (function/class/library) where they are allocated.</li>
<li>If this is not possible, try to use some automatic deallocation (boost shared pointer...)</li>
</ul>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/70322#703221Answer by Dark Shikari for How do you detect/avoid Memory leaks in your (Unmanaged) code?Dark Shikari2008-09-16T08:22:26Z2008-09-16T08:22:26Z<p>The best defense against leaks is a program structure which minimizes the use of malloc. This is not only good from a programming perspective, but also improves performance and maintainability. I'm not talking about using other things in place of malloc, but in terms of re-using objects and keeping very explicit tabs on all objects being passed around rather than allocating willy-nilly like one often gets used to in languages with garbage collectors like Java.</p>
<p>For example, a program I work on has a bunch of frame objects representing image data. Each frame object has sub-data, which the frame's destructor frees. The program keeps a list of all frames that are allocated, and when it needs a new one, checks a list of unused frame objects to see if it can re-use an existing one rather than allocate a new one. On shutdown, it just iterates through the list, freeing everything.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/110970#1109700Answer by Fabien Hure for How do you detect/avoid Memory leaks in your (Unmanaged) code?Fabien Hure2008-09-21T12:59:27Z2008-09-21T12:59:27Z<p>I would recommend using <a href="http://www.softwareverify.com/cpp/memory/index.html" rel="nofollow">Memory Validator</a> from software verify.
This tool proved itself to be of invaluable help to help me track down memory leaks and to improve the memory management of the applications i am working on. </p>
<p>A very complete and fast tool.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/195373#1953734Answer by Tal for How do you detect/avoid Memory leaks in your (Unmanaged) code?Tal2008-10-12T11:37:29Z2008-10-12T11:37:29Z<p>I’m amazed no one mentioned <a href="http://www.microsoft.com/downloadS/details.aspx?FamilyID=28bd5941-c458-46f1-b24d-f60151d875a3&displaylang=en" rel="nofollow">DebugDiag</a> for Windows OS.<br>
It works on release builds, and even at the customer site.<br>
(You just need to keep your release version PDBs, and configure DebugDiag to use Microsoft public symbol server)</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/195417#1954170Answer by quinmars for How do you detect/avoid Memory leaks in your (Unmanaged) code?quinmars2008-10-12T12:17:38Z2008-10-12T12:17:38Z<p>A nice malloc, calloc and reallloc replacement is rmdebug, it's pretty simple to use. It is much faster to then valgrind, so you can test your code extensively. Of course it has some downsides, once you found a leak you probably still need to use valgrind to find where the leak appears and you can only test mallocs that you do directly. If a lib leaks because you use it wrong, rmdebug won't find it.</p>
<p><a href="http://www.hexco.de/rmdebug/" rel="nofollow">http://www.hexco.de/rmdebug/</a></p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/387740#3877401Answer by Hernán for How do you detect/avoid Memory leaks in your (Unmanaged) code?Hernán2008-12-22T23:19:33Z2008-12-22T23:19:33Z<p>Visual Leak Detector is a very good tool, altough it does not supports the calls on VC9 runtimes (MSVCR90D.DLL for example). </p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/395227#3952270Answer by Hernán for How do you detect/avoid Memory leaks in your (Unmanaged) code?Hernán2008-12-27T18:09:17Z2008-12-27T18:09:17Z<p>The Fluid Studios Memory Manager is excellent.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/999442#9994420Answer by paperhorse for How do you detect/avoid Memory leaks in your (Unmanaged) code?paperhorse2009-06-16T03:08:01Z2009-06-16T03:13:40Z<p><a href="http://en.wikipedia.org/wiki/Mtrace" rel="nofollow">Mtrace</a> appears to be the standard built-in one for linux. The steps are :</p>
<ol> <li>set up the environment variable MALLOC_TRACE in bash<br>
<i>MALLOC_TRACE=/tmp/mtrace.dat</i><br>
<i>export MALLOC_TRACE;</i></li>
<li>Add <i>#include <mcheck.h></i> to the top of you main source file</li>
<li>Add <i>mtrace();</i> at the start of main and <i>muntrace();</i> at the bottom (before the return statement)</li>
<li>compile your program with the -g switch for debug information</li>
<li>run your program</li>
<li>display leak info with <br><i>mtrace your_prog_exe_name /tmp/mtrace.dat</i><br>
(I had to install the mtrace perl script first on my fedora system with <i>yum install glibc_utils</i> )</li>
</ol>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/999504#9995040Answer by Einstein for How do you detect/avoid Memory leaks in your (Unmanaged) code?Einstein2009-06-16T03:58:20Z2009-06-16T03:58:20Z<p>Memory debugging tools are worth their weight in gold but over the years I've found that two simple ideas can be used to prevent most memory/resource leaks from being coded in the first place.</p>
<ol>
<li><p>Write release code immediatly after writing the acquisition code for the resources you want to allocate. With this method its harder to "forget" and in some sense forces one to seriously think of the lifecycle of resources being used upfront instead of as an aside.</p></li>
<li><p>Use return as sparringly as possible. What is allocated should only be freed in one place if possible. The conditional path between acquisition of resource and release should be designed to be as simple and obvious as possible.</p></li>
</ol>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/1021266#10212660Answer by tialaramex for How do you detect/avoid Memory leaks in your (Unmanaged) code?tialaramex2009-06-20T08:59:46Z2009-06-20T08:59:46Z<p>At the top of this list (when I read it) was valgrind. Valgrind is excellent if you are able to reproduce the leak on a test system. I've used it with great success.</p>
<p>What if you've just noticed that the production system is leaking right now and you have no idea how to reproduce it in test? Some evidence of what's wrong is captured in the state of that production system, and it might be enough to provide an insight on where the problem is so you can reproduce it.</p>
<p>That's where Monte Carlo sampling comes into the picture. Read Raymond Chen's blog article,
“The poor man's way of identifying memory leaks” and then check out my implementation (assumes Linux, tested only on x86 and x86-64)</p>
<p><a href="http://github.com/tialaramex/leakdice/tree/master" rel="nofollow">http://github.com/tialaramex/leakdice/tree/master</a></p>