Tagged Questions

6
votes
1answer
161 views

Can I programmatically find out in which GC generation an instance lives?

This question is limited in scope to HotSpot generations. Is there any way to programmatically find out in which generation a particular instance lives. Data such as: Young or old generation? If ...
4
votes
2answers
749 views

creating a JVM from within a JNI method

Is it possible to create a JVM from within a JNI method using the JNI API? I've tried to do this using the JNI function "JNI_CreateJavaVM()", but it's not working (the function keeps returning a ...
4
votes
4answers
160 views

Is there such as role as a Java Runtime Administrator?

There are Database Administrators (DBA) and Unix|Windows System Administrators. There are likely soon to be Cloud Administrators. There are hordes of "administrators" who are tasked with ...
1
vote
5answers
218 views

Identify the current JVM with Java or JVMTI

I would like to identify the current JVM which is run. In the best case with a function described in the JVMTI Documentation, but I cannot find anything. What I meant, is something like this: ...
0
votes
0answers
64 views

JVMTI agent crashes

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 ...
0
votes
2answers
117 views

JVMTI _jclass toString

How to get the name of the JVM TI _jclass? I want to display names of classes loaded in the JVMTI agent, however it is not obvious to me how to get the name of a class from a _jclass instance.