Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do anyone know of a general algorithm to detect memory leak?

share|improve this question
in what language? or to be less specific, under what memory management paradigm? From your tagging I would guess C? – Tesserex Mar 1 '11 at 22:13
Ya. I want it in C – Karthick K Mar 1 '11 at 22:14
And in what context? Are you trying to, for example, write a tool that looks for memory leaks in running code? Or are you assuming that you have hooks into the dynamic memory management routines so that your memory profiler can intercept memory allocation requests? – Justin Cave Mar 1 '11 at 22:25
The tool is called #define malloc. You allocate your own block header and keep it on a linked list. See Writing Solid Code, the book. – Heath Hunnicutt Mar 2 '11 at 1:04

4 Answers

The simplest way is to have a counter for each kind of object you have in your application. When allocating an object increase the counter, when dellocating decrease it. When the application terminates, check that all counters are zero.

share|improve this answer
Hmm, now you also have to debug the reference counting bugs. Double the job. – Hans Passant Mar 1 '11 at 22:37
This is much harder to do in C, as opposed to C++. – Marlon Mar 1 '11 at 22:44
+1 for an actual answer to the question. – Jim Balter Mar 2 '11 at 1:40
Hans: I'm not talking about reference counting, only a simple pair of alloc and dealloc functions, for each type used, wrapping malloc and free. In my opinion, all well-designed application should have these anyway. – Lindydancer Mar 2 '11 at 9:22
You can probably get by without object specific counters, just a single one should suffice to ensure you have balanced malloc/calloc() to free() calls. – Ioan Mar 2 '11 at 16:07

While not an algorithm, there are a plethora of 3rd party tools that will help analyze your code for memory leaks as well. Depending on the size of your project, it might not be reasonable to manually track all allocations yourself.

I personally like to use valgrind if i am in a *nix environment.

alternative, let your program run for a long time and watch the memory allocation the process uses from top or task manager. If it's leaking, it will consistently go up. If not, it should inflate to it's maximum value then hold stay, or fluctuate between this and a lower value.

Unfortunately growth does not necessarily equal a leak, could just be your program needs A LOT of memory.

share|improve this answer

If you use Windows you need deleaker. If you use *nix try valgrind.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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