5.19  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-1822

Notes:

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

[procedure] (thread-deliver-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.

[procedure] (thread-quantum THREAD)
Returns the quantum of THREAD, which is an exact integer specifying the approximate time-slice of the thread.

[procedure] (thread-quantum-set! THREAD QUANTUM)
Sets the quantum of THREAD to QUANTUM.


22 http://srfi.schemers.org/srfi-18/srfi-18.html