cf

Format: cf address_expression

Continues a halted process after changing the program counter to the value of the specified address_expression. See "Address expressions". The following example installs a breakpoint at label bar of procedure foo whose action is to continue from the return point of the procedure, effectively skipping the rest of the function and returning immediately. The address must be within the current active procedure.
b foo##bar { cf ($ret()) }

As another example, the following command installs a breakpoint on line 12 of procedure foo whose action is to continue from line 14 of procedure foo. This will effectively skip lines 12 and 13 of procedure foo.
b foo#12 { cf foo#14; }


Previous

Next



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