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-특이적-function-in-gdb

지연 실행 모듈을 로드했습니다.
그렇다면 gdb -p $proc
저는 아직 gdb를 처음 접한 상태입니다. Delay_execution_planner 시작 부분까지 gdb를 직접 실행할 수 있나요? 단계가 많아 단계별로 따라가는 것은 옳지 않은 것 같습니다.

답변1

그게 다야중단점그렇습니다.

간단한

break delay_execution_planner
continue

필요한 것을 수행하십시오.

관련 정보