until

Continues running the program until the specified location is reached.

Syntax

u[ntil] { line | module:line | function }
Note:
  1. line is a source code line in the current module.
  2. module:line is a source code line in a specific module.
  3. function is a function name.

Usage

The until command continues running your program until either the specified location is reached, or the current stack frame returns. This can be used to avoid stepping through a loop more than once.

Example

(fgldb) until addcount()