mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 00:37:35 +02:00
Cleanup
This commit is contained in:
parent
d5ea9ae2a3
commit
4fdbea5c1d
1 changed files with 5 additions and 6 deletions
11
srfi/18.sld
11
srfi/18.sld
|
@ -9,7 +9,6 @@
|
|||
(define-library (srfi 18)
|
||||
(import (scheme base))
|
||||
(export
|
||||
;; TODO: current-thread
|
||||
thread?
|
||||
make-thread
|
||||
thread-name
|
||||
|
@ -19,28 +18,28 @@
|
|||
thread-sleep!
|
||||
thread-yield!
|
||||
thread-terminate!
|
||||
;; TODO: current-thread
|
||||
;; TODO: thread-join!
|
||||
|
||||
mutex?
|
||||
make-mutex
|
||||
mutex-lock!
|
||||
mutex-unlock!
|
||||
|
||||
;; For now, these are not implemented:
|
||||
;; mutex-name
|
||||
;; mutex-specific
|
||||
;; mutex-specific-set!
|
||||
;; mutex-state
|
||||
|
||||
;; TODO: condition variables are not implemented yet
|
||||
condition-variable?
|
||||
make-condition-variable
|
||||
;; (condition-variable-name condition-variable) ;procedure
|
||||
;; (condition-variable-specific condition-variable) ;procedure
|
||||
;; (condition-variable-specific-set! condition-variable obj) ;procedure
|
||||
condition-variable-wait! ;; Non-standard
|
||||
condition-variable-signal!
|
||||
condition-variable-broadcast!
|
||||
;; Not implemented yet:
|
||||
;; (condition-variable-name condition-variable) ;procedure
|
||||
;; (condition-variable-specific condition-variable) ;procedure
|
||||
;; (condition-variable-specific-set! condition-variable obj) ;procedure
|
||||
|
||||
;; Time functions are not implemented here, see (scheme time) instead
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue