Hello eCos programmers, I've done a memory leak checker and memory error detector for Doug Lea's malloc implementation. It can check the memory at the boundaries of a block and can be used to search for memory leaks. Special functions: #include cygmem_memalloc_heaps[0]->snapShotMemory(); Increase the usage count of all memory blocks to take a snapshot of the current memory. cygmem_memalloc_heaps[0]->dumpMemory(trigger); Dump current memory with a usage count lower than the trigger value. For example after a snapShotMemory(), dumpMemory(1) will output all newly allocated blocks. Of course the code need some beautifing and the malloc address search isn't that nice. Would be nice if some one could give it a try... BTW: I call it MungWall to remind good old Amiga days. Bye...