Compare commits

..

No commits in common. "338d08081e5c90cc23978147394021fa84a4f5cc" and "f38456b4c60510722ae815a9f09bd5d124da5690" have entirely different histories.

View file

@ -7,22 +7,20 @@ SOURCES = \
knots/promise.scm \
knots/queue.scm \
knots/resource-pool.scm \
knots/sort.scm \
knots/thread-pool.scm \
knots/timeout.scm \
knots/web-server.scm
knots/web-server.scm \
knots/thread-pool.scm
SCM_TESTS = \
tests/non-blocking.scm \
tests/non-blocking.scm \
tests/parallelism.scm \
tests/promise.scm \
tests/queue.scm \
tests/resource-pool.scm \
tests/sort.scm \
tests/thread-pool.scm \
tests/timeout.scm \
tests/web-server.scm
tests/non-blocking.scm \
tests/queue.scm \
tests/web-server.scm \
tests/parallelism.scm \
tests/resource-pool.scm \
tests/thread-pool.scm
TESTS_GOBJECTS = $(SCM_TESTS:%.scm=%.go)