You are looking at historical revision 1212 of this page. It may differ significantly from its current revision.

Unit srfi-18

A simple multithreading package. This threading package follows largely the specification of SRFI-18. For more information see the documentation for SRFI-18.

Notes:

The following procedures are provided, in addition to the procedures defined in SRFI-18:

thread-signal!

[procedure] (thread-signal! THREAD X)

This will cause THREAD to signal the condition X once it is scheduled for execution. After signalling the condition, the thread continues with its normal execution.

thread-quantum

[procedure] (thread-quantum THREAD)

Returns the quantum of THREAD, which is an exact integer specifying the approximate time-slice of the thread.

thread-quantum-set!

[procedure] (thread-quantum-set! THREAD QUANTUM)

Sets the quantum of THREAD to QUANTUM.

thread-suspend!

[procedure] (thread-suspend! THREAD)

Suspends the execution of THREAD until resumed.

thread-resume!

[procedure] (thread-resume! THREAD)

Readys the suspended thread THREAD.

Previous: Unit regex

Next: Unit posix