Rename module

This commit is contained in:
Justin Ethier 2019-06-14 13:06:35 -04:00
parent 44ab2b8de5
commit f8d8616d65
3 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
(import (scheme base)
(scheme read)
(scheme write)
(cyclone concurrency)
(cyclone concurrent)
(srfi 18))
;(define cv (make-condition-variable))

View file

@ -10,7 +10,7 @@
;; once that starts going, double-back to how to allocate shared objects effectively.
;; probably want a (make-shared)
;; may also way a way to allocate multiple shared objects at once (since a minor GC will likely be req'd)
(define-library (cyclone concurrency)
(define-library (cyclone concurrent)
(import
(scheme base)
)