Reference / Supported debug commands |
Continues running the program until the specified location is reached.
u[ntil] { line | module:line | function }
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.
(fgldb) until addcount()