info breakpoints (gdb mode only)

Print information about one or more breakpoints.

Syntax

info breakpoints [ID]

Parameters

ID

The ID number of the breakpoint. The ID number is an unsigned integer greater than 0 and assigned to a breakpoint by the debugger.

Description

This command prints information about the specified breakpoint. If you do not specify a breakpoint ID, the debugger prints information about all breakpoints.

Example

(idb) info breakpoints
Num Type           Disp Enb Address    What
1   breakpoint     keep y   0x08051603 in main at src/x_list.cxx:182
 breakpoint already hit 1 time(s)
2   breakpoint     keep y   0x0804ae5a in List<Node>::append(Node * const) at src/x_list.cxx:148
 breakpoint already hit 1 time(s)
3   watchpoint     keep y   _firstNode

See Also


Submit feedback on this help topic

Copyright © 1996-2010, Intel Corporation. All rights reserved.