bd

bd list | *

The bd command temporarily disables one or more breakpoints. To restore breakpoints disabled by the bd command, use the be (Enable Breakpoints) command.

Parameters

list

Specifies any combination of integer values in the range 0 through 9. If you specify list, the debugger disables the specified breakpoints.

*

Disables all breakpoints.

Example

The following example disables breakpoints 0, 4, and 8:

bd 0 4 8

The following example disables all breakpoints:

bd *