JVMTI is the Java Virtual Machine Tool Interface, a native API by which authors can write JVM plugins to monitor or modify the execution of a Java Virtual Machine.
Building a profiler of my own, I use the JVMTI API to build a native library agent. This agent can …
java jvmti