B

Arguments
[ address_expression | breakpoint_list ]
address_expression
See "Address expressions".
breakpoint_list
See "Breakpoint list and ranges".
Lists all breakpoints. The output format is:
ID
bp_label
location:
address
count:
flags
commands

For example:
MULTI> b main#5;
MULTI> b %my_bp_name main#6 { print "Here I am"; };
MULTI> b main #7 { print "main#7" };
MULTI> tog main#5

MULTI> B
0 main#5: 0x10204 count: 1 (inactive)
1 my_bp_name main#6: 0x01220 count: 1 <{ print "Here I am"; }>
2 main#8: 0x1022c count: 1 <{ print "main#7" }>

MULTI> B %my_bp_name:%2
1 my_pb_name main#6: 0x10220 count: 1 <{ print "Here I am"; }>
2 main#8: 0x1022c count: 1 <{ print "main#7" }>

See also l with the b option.


Previous

Next



Copyright © 1999, Green Hills Software. All rights reserved.