gdb服务器错误
有人知道错误信息吗? gdbserver[949] gdbserver 中 81c ip 0000081c sp bfeef918 错误 4 处的段错误 [8048000+1c0000] 分段错误
谢谢,
Anybody knows the error message?
gdbserver[949] segfault at 81c ip 0000081c sp bfeef918 error 4 in gdbserver [8048000+1c0000]
segmentation fault
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
错误消息(可能来自
/var/log/messages
)意味着gdbserver
崩溃(收到SIGSEGV
)。我认为它发生在指令
0x81c
处,这可能意味着它通过错误的函数指针调用了一个函数。The error message (presumably from
/var/log/messages
) means thatgdbserver
crashed (receivedSIGSEGV
).I think it happened at instruction
0x81c
, which likely means that it called a function though bad function pointer.