How to debug memory leak in heap_3

Hi, I am facing heap memory leak issue in my development. Using heap_3 for allocation. Is there a way to find the memory allocation and free ?

Note : I am using Eclipse IDE and I am not using any debugggers.

How did you figure out that you have memory leak? For debugging purposes, you can update the heap implementation to keep track of allocated pointers by every task. Once you determine the pointer which is not freed and the task that allocated it, it can give you a clue.

In general, it is a good idea to setup a debugger to be able to debug such issues.

Hi, I found the cause of leak issue. It was due to log_print, which has allocated heap and it was not freed. Thanks for your help and suggestion.