I am using timer_create function for timer functionality in my application.
When timeout happens, a new thread gets created. That time my application\'s memory usage is gett
Any thread stays "active" until you exit its thread function. Your leak is most probably the thread's stack - that will not go away until you invoke thread_join or some such.