1) Is there also any memory leak tool called Boehmgc? How is that tool compared to others?

2) I have used LeakTracer, mudflap and Valgrind. But unfortunately LeakTracer has the disadvantage of memory hogging (pooling a lot of memory at start and then allocating it), so what are the alternatives?

link|improve this question

1  
"List of all Xs" isn't a great question. – awoodland Aug 29 '11 at 10:52
@awoodland: May be great for developers, in helping to choose the appropriate tool, LeakTracer as we know hogs a lot of memory at start, so knowing alternates can be helpful. – kingsmasher1 Aug 29 '11 at 11:03
meta.stackoverflow.com/questions/57226/… and similar discussions is my concern – awoodland Aug 29 '11 at 11:08
1  
you can very easily ask "how does one implement a memory-leak-detector", or "why does this leak detector say I have a leak?" with that tag. – awoodland Aug 29 '11 at 11:21
1  
I think there's enough meat to the question you asked beyond the "list of X" thing though, particularly if you rephrased it to ask "What's the difference between garbage collection and leak detection". It's the "can you name all leak check tools" that doesn't quite fit IMHO. – awoodland Aug 29 '11 at 11:23
show 3 more comments
feedback

closed as not constructive by Steve-o, 0A0D, svick, ughoavgfhw, yoda Aug 30 '11 at 0:04

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

up vote 4 down vote accepted

Boehm GC is a garbage collector, similar to the garbage collection in Java. The other tools you mention are designed to warn you about leaks, such that you can take corrective action. Garbage collection is designed to find and recover no-longer used allocations, as the program runs. Example (from wikipedia page):

#include <assert.h>
#include <stdio.h>
#include <gc.h>

int main(void)
{
    int i;

    GC_INIT();
    for (i = 0; i < 10000000; ++i)
    {
        // GC_MALLOC instead of malloc
        int **p = GC_MALLOC(sizeof(int *));
        int *q = GC_MALLOC_ATOMIC(sizeof(int));

        assert(*p == 0);
        // GC_REALLOC instead of realloc
        *p = GC_REALLOC(q, 2 * sizeof(int));
        if (i % 100000 == 0)
            printf("Heap size = %zu\n", GC_get_heap_size());
    }

    // No free()

    return 0;
}

Personally there's something about using garbage collection in C or C++ that makes me quite uneasy. For C++ "Smart pointers" are the way to go in my opinion in scenarios where ownership is unclear (although you might want to have a thing about why it's unclear in your design) and for help with exception safety (E.g. what the now deprecated std::auto_ptr was designed for)

As for the leak detectors you can add:

To your list of Linux ones.

Related memory checking tools, but not leaks:

link|improve this answer
1  
Efectric Fence is memory overrun detection tool not memory leak. – kingsmasher1 Aug 29 '11 at 10:58
@king - I thought it had leak tracking too? – awoodland Aug 29 '11 at 11:00
1  
+1 for all the links – sehe Aug 29 '11 at 11:00
No, it doesn't. It has only memory overrun detection, and underruns too EF_PROTECT_BELOW – kingsmasher1 Aug 29 '11 at 11:02
@awoodland: Thanks, it was great !! Let me wait for some more replies, before i accept your answer. – kingsmasher1 Aug 29 '11 at 11:18
show 2 more comments
feedback

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