Is it possible to get full command line with all arguments which was used to launch current Java process and to get that durin开发者_Go百科g OnLoad phase in JVMTI?I have consulted the JVMTI reference
I\'m using the JVM Tool Interface. I\'m trying to create a SystemProperty in the Agent_OnLoad event using the SetSystemProperty() call.If the property exists, it correctly sets a new value.However, if
I\'m working on implementation of eraser data-race detection algorithm as JVMTI agent. When I try to run some example inputs to test my code, the JVM crashes, with dumps like the following (may show o
If I want to realize a profiler using byte code instrumentation, should I write a native agent using JVMTI or should I write a java agent using the java.lang.instrument package?
I am looking for some Microsoft API that whould have the same capabilities for monitoring .NET applications as JVMTI has for Java applications.
I tried to read through the whole jvmti documentation and I didn\'t find a solution for my problem. I want to get the name of the class/file that is used in the command line to call the program:
I am trying to create a tool that can capture all the read and writes ma开发者_JS百科de by a java program. Also, I would like to know what fields of what object is access/modified.
JVMTI offers the events ContendedMonitorEnter and ContendedMonitorEntered to detect events related to the use of synchronized. synchronized is nothing else, but a ReentrantLock.
Writing a profiling I would also implement the typical task of heap profiling. Specifically I would like to track, which thread has allocated how much data? Using JVMTI I thought it\'s sufficient to h
since开发者_开发百科 one week I\'m trying to compile a demo Version of the JVMTI demo set. In this case I tried to compile the HeapViewer Source Code (I just renamed the file HeapViewer.c to HeapViewe