See also PythonGdb
Quick reminders
gdb sources at startup |
\$HOME/.gdbinit |
adding a directory for source lookup |
directory <dirname> |
apply a command to all threads |
thread apply all bt |
set breakpoint on a symbol from a yet unloaded module |
break whatever # just works! answer y when asked |
ignore breakpoints |
ignore <bpnum> <count> |
add commands for breakpoint |
breakpoint bla; commands; a;b;...;end (replace ; with eols) |
shell |
shell |
Links
http://www.ibm.com/developerworks/aix/library/au-gdb.html
- how to define functions