ThreadInfo 类提供的信息是否比 JVMTI 提供的信息更多?

发布于 2024-10-31 22:04:17 字数 318 浏览 0 评论 0原文

这很令人困惑。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十秒萌定你 2024-11-07 22:04:17

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文