unrecord (idb mode only)

Stop recording debugger input, output, or both.

Syntax

unrecord {input|output|io}

Parameters

input

Stops logging input.

output

Stops logging output

io

Stops logging input and output.

Description

This command stops recording debugger input, output, or both.

To record, use the record command.

Example

(idb) record output myscript
(idb) stop in List<Node>::append
[#2: stop in void List<Node>::append(class Node* const)] 
(idb) cont
[2] stopped at [void List<Node>::append(class Node* const):148 0x0804ae5a] 
148 if (!_firstNode) 
(idb) cont to 156
stopped at [void List<Node>::append(class Node* const):156 0x0804aed7] 
156 } 
(idb) unrecord output

See Also


Submit feedback on this help topic

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