blob: e7415754d056e2bde83c079f49f4d96f67c9f969 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# example program: communicating between routines using channels
def producer sink:address:sink:character -> sink:address:sink:character [
# produce characters 1 to 5 on a channel
local-scope
load-ingredients
# n = 0
n:character <- copy 0
{
done?:boolean <- lesser-than n, 5
break-unless done?
# other threads might get between these prints
$print [produce: ], n, [
]
sink <- write sink, n
n <- add n, 1
loop
}
]
def consumer source:address:source:character -> source:address:source:character [
# consume and print integers from a channel
local-scope
load-ingredients
{
# read an integer from the channel
n:character, eof?:boolean, source <- read source
break-if eof?
# other threads might get between these prints
$print [consume: ], n:character, [
]
loop
}
]
def main [
local-scope
source:address:source:character, sink:address:sink:character <- new-channel 3/capacity
# create two background 'routines' that communicate by a channel
routine1:number <- start-running producer, sink
routine2:number <- start-running consumer, source
wait-for-routine routine1
wait-for-routine routine2
]
|