8 lines
187 B
Scheme
8 lines
187 B
Scheme
|
(define-interface semaphores-interface
|
||
|
(export make-semaphore
|
||
|
semaphore-post
|
||
|
semaphore-wait
|
||
|
with-semaphore-posted))
|
||
|
|
||
|
(define-interface with-lock-interface
|
||
|
(export with-lock))
|