JNI Application Profiling

How we track memory allocation in a Java application using the JNI layer. More specifically, if the C base code does some memory allocation, we can track these allocations with some kind of profiler [Eclipse / Netbeans].

+6
java profiling memory jni
source share
1 answer

It should be possible to track these distributions using an embedded environment such as Valgrind .

Running a JNI application in a Sun virtual machine under Valgrind

+2
source share

All Articles