Up: GEOS SDK TechDocs | Up | Prev: read-reg ... | Next: scope ...

ret

ret [<function name>]

Examples: "ret"
"ret ObjMessage"

Return from a function and stop.

See Also: finish, backtrace.

return-to-top-level

return-to-top-level

Examples:

"return-to-top-level"
Returns to the top-level interpreter.

Forces execution to return to the top-level interpreter loop, unwinding intermediate calls (protected commands still have their protected clauses executed, but nothing else is).

See Also: top-level, protect.

rs

rs

Examples:

"rs"
restart GEOS without attaching

Restart GEOS without attaching.

See Also: att, attach.

run

run [<patient-name>]

Examples:

"run uki"
Run the application with patient name "uki".
"run -e uki"
run EC Uki
"run -n uki"
run non-EC Uki
"run -p games\ukiec.geo "
run games\ukiec.geo
"run"
run the default patient, as specified by the patient-default command.

"Runs" an application by loading it via a call to UserLoadApplication() and stopping when the app reaches the GenProcess handler for MSG_META_ATTACH . Return patient created, if any (In the examples shown, this would be "uki").

See Also: patient-default, send, spawn, switch.

rwatch

rwatch [(on|off)]

Examples:

"rwatch on"
Watch text-recalculation as it happens
"rwatch off"
Turn output off
"rwatch"
See what the status is

Displays information about text recalculation. Specifically designed for tracking bugs in the rippling code.

See Also: ptext.

save

save (<#lines>|<filename>)

Examples:

"save 500"
Save the last 500 lines that scroll off the screen.
"save /dumps/puffball"
Save the contents of the entire scroll buffer to the file "puffball".

Controls the scrollback buffer Swat maintains for its main command window.

save-state

save-state

Examples:

"save-state"
Push the current register state onto the thread's state stack.

Records the state of the current thread (all its registers) for later restoration by "restore-state".

See Also: restore-state, discard-state.

sbwalk

sbwalk [<patient>]

Examples:

"sbwalk"
list the saved blocks of the current patient.
"sbwalk geos"
list the saved blocks of the GEOS patient.

List all the saved blocks in a patient.


Up: GEOS SDK TechDocs | Up | Prev: read-reg ... | Next: scope ...