|
From: Arun S. <aru...@or...> - 2008-01-14 06:46:48
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> Hi,<br> <br> I'm looking for a tool to detect memory leaks in my plugin to Apache server on Linux. The use case is like:<br> <p> </p> <ol> <li>From the moment the program starts, it traces each memory allocation (probably with additional information, such as a call stack).</li> <li>It registers all released memory.</li> <li>Before the program terminates, it prints out information about each unreleased memory block.</li> </ol> Can anybody pls. suggest some solution for this.<br> <br> Thanks<br> Arun </body> </html> |
|
From: Nicholas N. <nj...@cs...> - 2008-01-14 06:49:16
|
On Mon, 14 Jan 2008, Arun Singla wrote: > I'm looking for a tool to detect memory leaks in my plugin to Apache > server on Linux. The use case is like: > > 1. From the moment the program starts, it traces each memory allocation > (probably with additional information, such as a call stack). > 2. It registers all released memory. > 3. Before the program terminates, it prints out information about each > unreleased memory block. > Can anybody pls. suggest some solution for this. Er, Valgrind could be useful? Nick |