限制 Eclipse/GDB 访问的地址范围
我正在使用 Eclipse 在嵌入式 CPU 上进行调试,该 CPU 有一个令人痛苦的怪癖:当它尝试访问未实现的内存区域时,CPU 会挂起。
有时,在调试时,调试器会尝试跟踪错误地址并挂起 CPU。有没有办法告诉 GDB 它绝不能尝试从 0x40020000 到 0x4fffffff 读取内存?
I'm using Eclipse for debugging on an embedded CPU that has a painful quirk: when it tries to access a memory region that is unimplemented, the CPU hangs.
Occasionally when debugging, the debugger tries to follow a bad address and hangs the CPU. Is there any way to tell GDB that it must never try to read memory from, say, 0x40020000 to 0x4fffffff ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许设置内存区域属性会有所帮助。
Perhaps setting Memory Region Attributes will help.