info
Describes the current state of the program.
Syntax
i[nfo ] { breakpoints |sources | program | stack | files |
line (linespec | module:line | function } }
- breakpoints lists the breakpoints that you have set.
- sources prints the names of all the source files in your program.
- program displays the status of your program.
- stack summarizes how your program got where it is.
- files lists the names of the executable file and core dump files currently in use, and the files from which symbols were loaded.
- line linespec maps the specified source code line to program addresses.
- line module:line maps the specified source code line to program addresses.
- line function prints the program addresses for the first line of the function named function.
Usage
The info
command describes the state of your program.
The command info line linespec
prints the starting and ending addresses
of the compiled code for the source line specified. See the list
command for all
the ways that you can specify the source code line.
Example
(fgldb) info sources
Source files for which symbols have been read in:
mymodule.4gl, fglwinexec.4gl, fglutil.4gl, fgldialog.4gl, fgldummy4js.4gl
(fgldb)