How do you diagnose a leak in C memory caused by a Java program? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T05:07:12Zhttp://stackoverflow.com/feeds/question/108057http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/108057/how-do-you-diagnose-a-leak-in-c-memory-caused-by-a-java-program4How do you diagnose a leak in C memory caused by a Java program?David G2008-09-20T12:48:47Z2008-09-20T13:08:12Z
<p>I'm working on a large application (300K LOC) that is causing a memory leak in the Sun 1.6 JVM (1.6_05). Profiling the Java shows no leak. Are there any diagnostics available from the JVM that might detect the cause of the leak?<br />
I haven't been able to create a simple, isolated Java test case. Is the only way to figure this out by using a C heap analyzer on the JVM?<br />
The application creates a pool of sockets and does a significant amount of network I/O.</p>
http://stackoverflow.com/questions/108057/how-do-you-diagnose-a-leak-in-c-memory-caused-by-a-java-program/108101#1081011Answer by Horcrux7 for How do you diagnose a leak in C memory caused by a Java program?Horcrux72008-09-20T13:06:56Z2008-09-20T13:06:56Z<p>Some profiler like profiler4j can show the manged and the unmanged memory (live curve). Then you can see if you has a leak and when the leak occur. But you does not find more informations.</p>
<p>After this there are 2 possible solutions:</p>
<ol>
<li>You can with the live curve isolate the problem and create a simpler test until you have find the cause of the problem.</li>
<li>You search your code for the typical problems like:
<ol>
<li>Instances of the class Thread that are never start.</li>
<li>Images or Graphics that never are dispose</li>
<li>ODBC Bridge Objects that are never close</li>
</ol></li>
</ol>
http://stackoverflow.com/questions/108057/how-do-you-diagnose-a-leak-in-c-memory-caused-by-a-java-program/108105#1081050Answer by Sam Reynolds for How do you diagnose a leak in C memory caused by a Java program?Sam Reynolds2008-09-20T13:08:12Z2008-09-20T13:08:12Z<p>I love valgrind (<a href="http://valgrind.org/" rel="nofollow">http://valgrind.org/</a>) if you are executing it on a system it supports. It rocks.</p>
<p>Sam</p>