unset (idb mode only)

Delete the specified debugger variable.

Syntax

unset name  

Parameters

name

The variable to delete.

Description

This command deletes the specified debugger variable.

Example

(idb) set $color="blue"
(idb) print $color
"blue"
(idb) unset $color
(idb) print $color
Symbol "$color" is not defined.

See Also


Submit feedback on this help topic

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