gdb 执行到特定函数

gdb 执行到特定函数

https://git.postgresql.org/cgit/postgresql.git/tree/src/test/modules/delay_execution/delay_execution.c
https://stackoverflow.com/questions/11967440/stepping-into-specific-function-in-gdb

我加载了延迟执行模块。
然后gdb -p $proc
对 gdb 还很陌生。我可以让gdb直接执行到delay_execution_planner的开头吗?步骤很多,一步步按好像不太好。

答案1

就是这样断点是给。

一个简单的

break delay_execution_planner
continue

做你需要的。

相关内容