From: Nicholas Nethercote Date: Thu, 6 Oct 2005 18:58:33 +0000 (+0000) Subject: Added an FAQ about Java. X-Git-Tag: svn/VALGRIND_3_1_0~349 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97e0595797b4e634fbf50176481ad5de15518089;p=thirdparty%2Fvalgrind.git Added an FAQ about Java. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4883 --- diff --git a/docs/xml/FAQ.xml b/docs/xml/FAQ.xml index 25f44b0755..56ae36a41f 100644 --- a/docs/xml/FAQ.xml +++ b/docs/xml/FAQ.xml @@ -181,6 +181,24 @@ + + + I tried running a Java program under Valgrind but Valgrind aborted. + Does Valgrind handle Java programs, dynamically generated code, etc? + + + + Valgrind handles dynamically generated code without a problem. + In theory, Valgrind can run any Java program just fine, even those that + use JNI and are partially implemented in other languages like C and C++. + In practice, Java implementations tend to do nasty things that most + programs do not, and Valgrind sometimes falls over these corner + cases. + If your Java programs do not run under Valgrind, please file a + bug report and hopefully we'll be able to fix the problem. + + +