如何获取当前进程的起始地址---Linux
你们能告诉我如何在linux上获取当前进程的起始虚拟地址吗?有什么系统调用或设施会有帮助吗?任何指导将不胜感激。
Could you guys tell me how to get the start virtual address of the current process on linux? Any systems calls or facilities that would be helpful? Any guidance would be highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查 objdump 是如何获取该地址的。然后在您自己的代码中的
/proc/self/exe
上运行它。Check what does
objdump
do to get that address. Then run it on/proc/self/exe
in your own code.'grep'ing lsof 的输出怎么样?
How about 'grep'ing the output of lsof?