e

Format: e [address_expression]

If address_expression is specified, it changes your current viewing location in the code to that address expression. See "Address expressions". With no arguments, it prints your viewing location in the code. Here are several examples of this command:
Displaying variables
Expression Meaning
e
Shows current file, procedure, and line number. For example: test.c:PrintLine:28
e (proc | file)
Enters procedure proc or file file. If a wildcard pattern is used while in GUI mode, then a dialog box appears allowing you to choose from the matching procedures or files.
e stack_
Enters the procedure at call stack trace level number stack. The stack number must be followed by an underscore "_". Use the calls command to view the stack. See also "Stack trace commands".
e address_expression
Enters the procedure at address specified by the address expression.
e +offset
Changes the viewing location to (current address + offset).
e -offset
Changes the viewing location to (current address - offset).
e numb
Enters the procedure containing breakpoint number num. Use the B command to view breakpoint numbers. (See B.) For example, e 1b enters the procedure containing breakpoint number one.


Previous

Next



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