JVMTI 未加载
我正在尝试使用 JVMTI 来用 C++ 编写一个小型 Java 调试器。 我在这里读到:
http://java.sun.com/developer/technicalArticles/Programming/jvmti/
JVM 应该调用定义如下的导出方法JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *jvm, char *options, void *reserved)
但是,即使我启动了 java 目标程序,当我运行调试器时也没有看到此方法被调用。
这是启动 JVMTI 的正确方法吗? java程序启动时会自动调用吗?
I'm trying to use the JVMTI in order to write a little Java debugger in C++.
I read here:
http://java.sun.com/developer/technicalArticles/Programming/jvmti/
that the JVM should call an exported method defined likeJNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *jvm, char *options, void *reserved)
But I don't see this method called when I run my debugger even if I start my java target program.
Is this the correct way to start this JVMTI? Is it supposed to be called automatically when a java program is started?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您在调用 Java 程序时提供“-agentlib”命令行参数时,会加载调试代理代码,例如:
有关它的最新文章位于 此处。
The debug agent code is loaded when you supply "-agentlib" command-line argument while calling a Java program, like:
A little more recent article about it is located here.