Vs2013在Linux开发中的应用(22):模块加载
快乐虾
http://blog.csdn.net/lights_joy/
欢迎转载,但请保留作者信息
当gdb检测到模块的加载时会输出:
=library-loaded,id="/lib/ld-linux.so.2",target-name="/lib/ld-linux.so.2",host-name="/lib/ld-linux.so.2",symbols-loaded="0",thread-group="i1"
在这里只给出了模块的名称,但VS除了要提供模块名称外还需要id,因而需要自己添加,无非就是个整数,只要不重复就可以了。
然后发送事件通知SDM:
privatevoid SendModuleLoaded(AD7Module ad7Module)
{
AD7ModuleLoadEvent eventObject = new AD7ModuleLoadEvent(ad7Module, true /*this is a module load */);
// TODO: Bind breakpoints when the module loads
Send(eventObject,AD7ModuleLoadEvent.IID, null);
}
然后就可以在输出窗口看到模块加载信息了:
当程序中断时,可以查询更详细的信息,此时SDM将调用:
// Gets the MODULE_INFO that describes this module.
// This is how the debugger obtains most of theinformation about the module.
intIDebugModule2.GetInfo(enum_MODULE_INFO_FIELDS dwFields, MODULE_INFO[] infoArray) {
在这里根据要求填上infoArray的值,然后就可以看到模块窗口的信息了:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。