about summary refs log tree commit diff stats
path: root/channel.mu
diff options
context:
space:
mode:
Diffstat (limited to 'channel.mu')
-rw-r--r--channel.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.mu b/channel.mu
index 343caa7e..d58f4546 100644
--- a/channel.mu
+++ b/channel.mu
@@ -43,5 +43,5 @@
   ; create two background 'routines' that communicate by a channel
   (fork consumer:fn nil:literal/globals chan:channel-address)
   (fork producer:fn nil:literal/globals chan:channel-address)
-  (sleep 2000:literal)  ; wait for forked routines to effect the transfer
+  (sleep for-some-cycles:literal 2000:literal)  ; wait for forked routines to effect the transfer
 ])