Up: GEOS SDK TechDocs | Up | Prev: help ... | Next: imem ...

hwalk

hwalk [<flags>] [<patient>]

Examples:

"hwalk"
display the heap
"hwalk -e"
display the heap and perform error checking
"hwalk -r ui"
display the heap owned by the ui in reverse order

Print the status of all blocks on the global heap.

See Also: lhwalk, phandle, handles, hgwalk.

iacp

iacp -ac
prints all connections

iacp -l
prints all lists without connections

iacp -d
prints all open documents

iacp <obj>
prints all connections to which <obj> is party

ibrk

Set a breakpoint interactively. At each instruction, you have several options:

q
Quit back to the command level.
n
Go to next instruction (this also happens if you just hit return).
p
Go to previous instruction.
P
Look for a different previous instruction.
^D
Go down a "page" of instructions. The size of the page is controlled by the global variable ibrkPageLen. It defaults to 10.
^U
Go up a "page" of instructions.
b
Set an unconditional breakpoint at the current instruction and go back to command level.
a
Like 'b', but the breakpoint is set for all patients.
t
Like 'b', except the breakpoint is temporary and will be removed the next time the machine stops.
B
Like 'b', but can be followed by a command to execute when the breakpoint is hit.
A
Like 'B', but for all patients.
T
Like 'B', but breakpoint is temporary.

ibrkPageLen

var ibrkPageLen [<number-of-lines>]

Number of instructions to skip when using the ^D and ^U commands of ibrk.

ignerr

ignerr

Examples:

"ignerr" ignore error and continue
"ignerr MyFunc::done" ignore error and continue at MyFunc::done.

Ignore a fatal error and continue.

See Also: why, backtrace.


Up: GEOS SDK TechDocs | Up | Prev: help ... | Next: imem ...