GDB note

来源:互联网 发布:剑灵路飞捏脸数据图 编辑:程序博客网 时间:2024/06/05 14:38

gdb foo

gdb foo core

gdb foo pid


set args -- for foo with parameters

r[un] Run to next breakpoint or to end s[tep] Single-step, descending into functionsn[ext] Single-step without descending into functionsfin[ish] Finish current function, loop, etc. (useful!)c[ontinue] Continue to next breakpoint or end

0 0