I am working on a memory leak tool, the thing is: this tool should catch memory leaks only from test program, but what actually happens is, i have created a timer using API timer_create (POSIX), and this is somehow causing a leak of 144+56 bytes.
Any idea, as to how to stop it? How can i make sure, that all malloc requests from timer_create are not logged?
I am using the timer thread function method, and not signal. SIGEV_THREAD
valgrindto detect memory leaks?valgrindsupports ARM, but not mips (valgrind.org/docs/manual/dist.news.html). There's a lot of MIPs tools suggested in this question: stackoverflow.com/questions/1906228/…