Initial file

This commit is contained in:
Justin Ethier 2019-04-24 13:32:21 -04:00
parent 5c717dce3a
commit b1cdb81177

View file

@ -0,0 +1,16 @@
(define-library (cyclone concurrency)
;; TODO:
;how to determine if an object can be shared between threads (EG: on the heap)?
;
;what data type to use for concurrency objects?
;what data structures to support - queue, ??
;what operations to support - promises, ??
;what objects to support - atomics, refs, ??
;
;what role do atomics play? how does that affect GC?
(import
)
(export
)
(begin)
)