disable display (gdb mode only)

Disable displaying the specified items.

Syntax

disable display [ ID … ]

Parameters

ID

The ID of the item to remove from the automatic display list.

Description

This command disables displaying the specified items in the automatic display list. If you do not specify ID, the debugger disables the entire automatic display list.

The debugger includes an automatic display list, which prints the value of an expression each time the debuggee stops. For more information, see the display command.

To add an expression or address to the automatic display list, use the display command.

To enable an item in the automatic display list, use the enable display command.

To show the expressions currently in the automatic display list, use the info display command.

Example

(idb) enable display
(idb) step
No symbol "argv" in current context.
cannot evaluate argv
2: argv = 
No symbol "argc" in current context.
cannot evaluate argc
1: argc = 
(idb) disable display
(idb) step
(idb)  

See Also


Submit feedback on this help topic

Copyright © 1996-2010, Intel Corporation. All rights reserved.