How do you diagnose a leak in C memory caused by a Java program? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:07:12Z http://stackoverflow.com/feeds/question/108057 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/108057/how-do-you-diagnose-a-leak-in-c-memory-caused-by-a-java-program 4 How do you diagnose a leak in C memory caused by a Java program? David G 2008-09-20T12:48:47Z 2008-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#108101 1 Answer by Horcrux7 for How do you diagnose a leak in C memory caused by a Java program? Horcrux7 2008-09-20T13:06:56Z 2008-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#108105 0 Answer by Sam Reynolds for How do you diagnose a leak in C memory caused by a Java program? Sam Reynolds 2008-09-20T13:08:12Z 2008-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>