summary refs log tree commit diff stats
path: root/lib/js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/js')
0 files changed, 0 insertions, 0 deletions
t; 2015-07-13 22:43:16 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-07-13 22:50:49 -0700 1780 - now we always reclaim local scopes' href='/akkartik/mu/commit/channel.mu?h=main&id=77d5b5d658830bd24724f945e0d6ddf6a06adc0e'>77d5b5d6 ^
104854ca ^
b96af395 ^
d135851e ^
b96af395 ^
ce87c19e ^

b96af395 ^
ce87c19e ^
b96af395 ^
ce87c19e ^

b96af395 ^
f192d655 ^
b96af395 ^
f192d655 ^
104854ca ^
b96af395 ^
77d5b5d6 ^
104854ca ^
b96af395 ^

d135851e ^
b96af395 ^
d135851e ^
b96af395 ^

f192d655 ^
b96af395 ^
f192d655 ^
b96af395 ^
77d5b5d6 ^
bc643692 ^
b96af395 ^
d135851e ^

ce87c19e ^

b96af395 ^
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

                                                                
                                                              
                                          
             
                  
         
                       
   

                                     
                                                  
                             
 

                                         
        
   
 
 
                                                              
                                             
             
                  

                                      
                                                  
                                                  
                                       

        
   
 
 
             
             
                                       
                                                                  

                                                           

                           
 
# example program: communicating between routines using channels

recipe producer chan:address:channel -> chan:address:channel [
  # 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, [ 
]
    chan:address:channel <- write chan, n
    n <- add n, 1
    loop
  }
]

recipe consumer chan:address:channel -> chan:address:channel [
  # consume and print integers from a channel
  local-scope
  load-ingredients
  {
    # read an integer from the channel
    n:character, chan:address:channel <- read chan
    # other threads might get between these prints
    $print [consume: ], n:character, [ 
]
    loop
  }
]

recipe main [
  local-scope
  chan:address:channel <- new-channel 3
  # create two background 'routines' that communicate by a channel
  routine1:character <- start-running producer:recipe, chan
  routine2:character <- start-running consumer:recipe, chan
  wait-for-routine routine1
  wait-for-routine routine2
]