This is confusing. The ThreadInfo class provides alot of information, especially statistic of a Thread. However I cannot find such functions in the JVMTI. Is this norma? Do I have to gather the data myself? Do I have to iterate to the ThreadInfo object myself?
Asked
Active
Viewed 132 times
1 Answers
1
All of the information available in the ThreadInfo class can be acquired through JVMTI functions:
See: http://download.oracle.com/javase/1.5.0/docs/guide/jvmti/jvmti.html#GetThreadState
It's everything that's in ThreadInfo, just jammed into a bit vector.

lscoughlin
- 2,327
- 16
- 23
-
This looks good, however I cannot see that data is gathered like ThreadInfo.getWaitedTime() – Konrad Reiche Apr 12 '11 at 22:27