10 lines
257 B
Scheme
10 lines
257 B
Scheme
|
;Thread nomenclature for scsh.
|
||
|
|
||
|
(define fork/thread (structure-ref threads spawn))
|
||
|
|
||
|
(define fork/process (structure-ref scsh-level-0 fork))
|
||
|
|
||
|
(define wait/thread (structure-ref threads-internal wait))
|
||
|
|
||
|
(define wait/process (structure-ref scsh-level-0 wait))
|