Stepping Through Code Execution

Stepping is performed relative to a thread. When a breakpoint is reached, all threads are suspended, and the thread that encounters the breakpoint becomes the current thread. You can then step through the code that the current thread is executing.

Note that if the thread you have designated as the current thread is in a suspended state and a breakpoint is reached in another thread, the context does not automatically switch to the thread where the breakpoint was encountered. The current thread must be running for the context to switch automatically to the thread where the breakpoint was encountered.

Notes

See Also

Guide to the Cosmo Code Development Environment
12-96*243