Examining line numbers
|
---|
Expression
|
Meaning
|
---|
e 10
|
Examine line number 10 in current procedure of file.
|
e +10
|
Examine 10 lines from current position.
|
e 0x1234
|
Examine address 0x1234.
|
e proc#4
|
Examine (procedure-relative) line 4 of procedure proc.
|
e "foo.c"#4
|
Examine (file relative) line 4 of file foo.c.
|
e "foo.c"#proc#4
|
Examine (procedure relative) line 4 of procedure proc in file foo.c.
|
e (expression)
|
Examine the address which is the value of the expression.
|
e ($ret())
|
Examine the return address of the current procedure.
|
e *
|
Examine procedure list.
|
e 2b
|
Examine breakpoint #2.
|
e 2_
|
Examine call stack trace depth 2 (our caller's caller).
|