Download LF95 Linux User's Guide
Transcript
Controlling Program Execution silentnext [ count ] Same as Next but if a signal breaks a program, the program is notified of that signal when program execution is continued. nexti [ count ] Executes the next count machine language instructions, including the current instruction, where a procedure call is considered to be an instruction. If omitted, count defaults to 1, and only the current instruction is executed. silentnexti [ count ] or nin [ count ] Same as Nexti but if a signal breaks a program, the program is notified of that signal when program execution is continued. until Continues program execution until reaching the next instruction or statement. until location Continues program execution until reaching the location location. The same syntax rules as for breakpoints apply. until *addr Continues program execution until reaching the address addr. until +|-offset Continues program execution until reaching the line forward (+) or backward (-) offset lines from the current line. until return Continues program execution until returning to the calling line of the procedure that includes the current breakpoint. goto [ ‘file‘ ] line Execution is restarted from the specified line line in file file. jump [ ‘file‘ ] line Changes the program counter (jumps) to the address corresponding to the specified line line in file file. jump *addr Changes the program counter (jumps) to address addr. Lahey/Fujitsu Fortran 95 User’s Guide 55