Up: GEOS SDK TechDocs | Up | Prev: text-fixup ... | Next: varwin ...

twalk

twalk

Examples:

"twalk"
print all the timers in the system.
"twalk -o ui"
print all the timers in the system for the ui thread.
"twalk -a"
print all the timers with the "real" data for the time for time remaining rather than maintaining a total.

List all the timers in GEOS.

unalias

unalias <name>+

Examples:

"unalias p"
Removes "p" as an alias for print.

This removes an alias.

See Also: alias.

unassemble

unassemble [<addr> [<decode-args>]]

Examples:

"unassemble cs:ip 1"
Disassemble the instruction at CS:IP and return a string that shows the values of the arguments involved.

This decodes data as machine instructions and returns them to you to display as you like. It is not usually typed from the command line.

See Also: listi.

unbind-key

unbind-key <ascii_value>

Examples:

"unbind-key \321"
Unbinds scroll-down key on host machine.

Unbinds the passed ASCII value.

See Also: alias, bind-key, get-key-binding.

undebug

undebug <proc-name>+

Examples:

"undebug fooproc"
Cease halting execution each time "fooproc" is executing.

Removes a Tcl breakpoint set by a previous "debug" command.

See Also: debug.

up

up [<frame offset>]

Examples:

"up"
move the frame one frame up the stack
"up 4"
move the frame four frames up the stack

Move the frame up the stack.

See Also: backtrace, down.

value

value fetch <addr> [<type>]
value store <addr> <value> [<type>]
value hfetch <num>
value hstore <addr-list>
value hset <number-saved>
value log <addr> <stream> [<type>]

Examples:

"value fetch ds:si [type word]"
Fetch a word from ds:si
"value store ds:si 0 [type word]"
Store 0 to the word at ds:si
"value hfetch 36"
Fetch the 36th address list stored in the value history.
"value hstore $a"
Store the address list in $a into the value history.
"value hset 50"
Keep track of up to 50 address lists in the value history.
"value log ds:si $s [type word]"
Fetch a word from ds:si and dump the binary data to stream $s.

This command allows you to fetch and alter values in the target PC. It is also the maintainer of the value history, which you normally access via @<number> terms in address expressions.

See Also: addr-parse, assign, field.


Up: GEOS SDK TechDocs | Up | Prev: text-fixup ... | Next: varwin ...