Chapter Contents |
Previous |
Next |
Command Directory |
b{reak}
Format 1: break | |
Format 2: break HOOK-TYPE
[when (EXPRESSION)] 1 [count n] |
break
command requests breakpoints at line-number hooks in a program.
Format 2: See Using Debugger Commands for the details of the HOOK-TYPE argument, which is used to specify line-number hooks as breakpoints.
If a when clause is present, a hit is counted only if the when expression is true.
break *
debug
.
break entry
break calls
break main 45 count 10
main
function the tenth time the line-number hook at that line is reached. After
that, it breaks every time line 45 is reached.
break 53
break (comp23) entry
comp23
section.
break func1 entry when (parm1 ==5)
func1
function when the value of
parm1
is 5.
break func 23:46
func
function.
PROFILE | yes |
configuration file | no |
Source window prefix | b |
break
command uses command scope to resolve references to all identifiers, function
names, and section names.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright © 2001 by SAS Institute Inc., Cary, NC, USA. All rights reserved.