show print address (gdb mode only)

Show whether the debugger is set to print or not print the value of a pointer as an address.

Syntax

show print address

Parameters

None.

Description

This command shows whether the debugger is set to print or not print the value of a pointer as an address.

This command shows the current display setting for variables.

The debugger shows the value of a pointer as an address by default.

This information may include the location of stack traces, breakpoints, structure and pointer values.

Example

(idb)  set print address on
(idb)  show print address
Printing of address is on.
(idb)  p &x
$1 = (int *) 0xbfffe320
(idb)  set print address off
(idb)  show print address
Printing of address is off.
(idb)  p &x
$2 = (int*)

See Also


Submit feedback on this help topic

Copyright © 2001-2011, Intel Corporation. All rights reserved.