ThreadInfo 类提供的信息是否比 JVMTI 提供的信息更多?
这很令人困惑。 ThreadInfo 类提供了很多信息,特别是线程的统计信息。但是我在 JVMTI 中找不到此类函数。这是常态吗?我必须自己收集数据吗?我必须自己迭代 ThreadInfo 对象吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ThreadInfo 类中的所有可用信息都可以通过 JVMTI 函数获取:
请参阅:
http://download.oracle.com/javase /1.5.0/docs/guide/jvmti/jvmti.html#GetThreadState
这是 ThreadInfo 中的所有内容,只是塞进了一个位向量中。
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.