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?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
This looks good, however I cannot see that data is gathered like ThreadInfo.getWaitedTime() – platzhirsch Apr 12 '11 at 22:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.