c – 是否可以在GDB调试器中“跳转”“跳过”?

c – 是否可以在GDB调试器中“跳转”“跳过”?,第1张

概述在GDB中调试时是否可以跳转到代码/可执行文件中的某个位置/地址? 假设我有类似以下的内容 int main(){ caller_f1() { f1(); // breakpoint f2() } // want to skip f2() and jump caller_f2() { // jump to this this location ?? 在GDB中调试时是否可以跳转到代码/可执行文件中的某个位置/地址?

假设我有类似以下的内容

int main(){  caller_f1() {     f1();  // breakpoint     f2() } // want to skip f2() and jump   caller_f2() { // jump to this this location ??          f1();     f2(); }  }
解决方法 似乎有一个跳转命令正是您正在寻找的:

http://idlebox.net/2010/apidocs/gdb-7.0.zip/gdb_18.html#SEC163

更新链接:
http://web.archive.org/web/20140101193811/http://idlebox.net/2010/apidocs/gdb-7.0.zip/gdb_18.html#SEC163

总结

以上是内存溢出为你收集整理的c – 是否可以在GDB调试器中“跳转”/“跳过”?全部内容,希望文章能够帮你解决c – 是否可以在GDB调试器中“跳转”/“跳过”?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1254566.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存