mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 08:47: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)
|
(define-library (srfi 18)
|
||||||
(import (scheme base))
|
(import (scheme base))
|
||||||
(export
|
(export
|
||||||
;; TODO: current-thread
|
|
||||||
thread?
|
thread?
|
||||||
make-thread
|
make-thread
|
||||||
thread-name
|
thread-name
|
||||||
|
@ -19,28 +18,28 @@
|
||||||
thread-sleep!
|
thread-sleep!
|
||||||
thread-yield!
|
thread-yield!
|
||||||
thread-terminate!
|
thread-terminate!
|
||||||
|
;; TODO: current-thread
|
||||||
;; TODO: thread-join!
|
;; TODO: thread-join!
|
||||||
|
|
||||||
mutex?
|
mutex?
|
||||||
make-mutex
|
make-mutex
|
||||||
mutex-lock!
|
mutex-lock!
|
||||||
mutex-unlock!
|
mutex-unlock!
|
||||||
|
|
||||||
;; For now, these are not implemented:
|
;; For now, these are not implemented:
|
||||||
;; mutex-name
|
;; mutex-name
|
||||||
;; mutex-specific
|
;; mutex-specific
|
||||||
;; mutex-specific-set!
|
;; mutex-specific-set!
|
||||||
;; mutex-state
|
;; mutex-state
|
||||||
|
|
||||||
;; TODO: condition variables are not implemented yet
|
|
||||||
condition-variable?
|
condition-variable?
|
||||||
make-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-wait! ;; Non-standard
|
||||||
condition-variable-signal!
|
condition-variable-signal!
|
||||||
condition-variable-broadcast!
|
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
|
;; Time functions are not implemented here, see (scheme time) instead
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue