From af2e836e169b926fcb86d40a1288964c5f7482c5 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 15 Jan 2016 03:10:14 -0500 Subject: [PATCH] Added stub --- examples/threading/producer-consumer.scm | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 examples/threading/producer-consumer.scm diff --git a/examples/threading/producer-consumer.scm b/examples/threading/producer-consumer.scm new file mode 100644 index 00000000..d5fce491 --- /dev/null +++ b/examples/threading/producer-consumer.scm @@ -0,0 +1,5 @@ +; TODO: +; try having multiple producers writing to a queue, and +; a consumer reading from it +; an important consideration is how to let the producers write values, since they would be on their stacks! +; ideally do not want the application to have to worry about what value came from what thread...