Delete the specified items from the automatic display list.
undisplay [ ID,… ]
ID |
The ID of the item to delete from the automatic display list. |
This command removes the specified items from the automatic display list.
This command is equivalent to delete display. For complete information on using this command, see the description for delete display.
(idb) display other_glob1 1: other_glob1 = 0 (idb) display global_thing 2: global_thing = 99 (idb) break main Breakpoint 1 at 0x8048427: file /site/c_code/hello.c, line 18. (idb) run Starting program: /site/c_code/hello Breakpoint 1, main () at /site/c_code/hello.c:18 18 float local_thing = 1.5; 2: global_thing = 99 1: other_glob1 = 0 (idb) undisplay 1 (idb) next 19 pid_t my_pid = -1; 1: global_thing = 99 (idb)
Copyright © 1996-2010, Intel Corporation. All rights reserved.