Debugging with GDB (September 2007)
220 Debugging with GDB
XDB Command WDB Equivalent Meaning
ab numb e r enable number Activate suspended breakpoint of
the given number
ab * enable Activate all suspended break-
points
ab @shared-
library
No equivalent Activate suspended breakpoints in
named shared library
bc numb e r expr bc number expr (with -xdb),
ignorenumb e r expr (within a
commands list)
Set a breakpoint count
db clear Delete breakpoint at current line
db numb e r delete number Delete breakpoint of the given
numb e r
db * delete Delete all breakpoints
sb numb e r disable number Suspend breakpoint of the given
numb e r
sb * disable Suspend all breakpoints
sb @shared-
library
No equivalent Suspend breakpoints in named
shared library
16.2.4 All-procedures breakpoint commands
GDB does not provide the ability to set breakpoints on all procedures with a single
command. Therefore, it does not have any equivalent of the following commands:
bp
bpt
bpx
dp
Dpt