Debugging with GDB (February 2008)

Table Of Contents
224 Debugging with GDB
XDB Command WDB Equivalent Meaning
ab number 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 number expr bc number expr (with -xdb),
ignorenumber expr (within a
commands list)
Set a breakpoint count
db clear Delete breakpoint at current line
db number delete number Delete breakpoint of the given
number
db * delete Delete all breakpoints
sb number disable number Suspend breakpoint of the given
number
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