about summary refs log tree commit diff stats
path: root/html/ex9.mu.html
Commit message (Expand)AuthorAgeFilesLines
* .Kartik Agaram2021-05-311-2/+2
* .Kartik Agaram2021-05-181-2/+2
* .Kartik Agaram2021-04-211-8/+8
* .Kartik Agaram2021-04-131-3/+3
* .Kartik Agaram2021-03-231-2/+2
* .Kartik Agaram2021-03-231-0/+113
kartik/mu/blame/channel.mu?h=main&id=01caf342d072115c27926b1a61c2fc75ab9fbee0'>^
b96af395 ^

5497090a ^
b96af395 ^
5497090a ^

b96af395 ^
f192d655 ^
b96af395 ^
f192d655 ^
b96af395 ^





5497090a ^
b96af395 ^
5497090a ^
b96af395 ^

f192d655 ^
b96af395 ^
f192d655 ^
b96af395 ^

a91c1c2a ^
b96af395 ^
5497090a ^



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 [
  # produce numbers 1 to 5 on a channel
  default-space:address:array:location <- new location:type, 30:literal
  chan:address:channel <- next-ingredient
  # n = 0
  n:number <- copy 0:literal
  {
    done?:boolean <- lesser-than n:number, 5:literal
    break-unless done?:boolean
    # other threads might get between these prints
    $print [produce: ], n:number, [ 
]
    chan:address:channel <- write chan:address:channel, n:number
    n:number <- add n:number, 1:literal
    loop
  }
]

recipe consumer [
  # consume and print integers from a channel
  default-space:address:array:location <- new location:type, 30:literal
  chan:address:channel <- next-ingredient
  {
    # read an integer from the channel
    n:number, chan:address:channel <- read chan:address:channel
    # other threads might get between these prints
    $print [consume: ], n:number, [ 
]
    loop
  }
]

recipe main [
  default-space:address:array:location <- new location:type, 30:literal
  chan:address:channel <- new-channel 3:literal
  # create two background 'routines' that communicate by a channel
  routine1:number <- start-running producer:recipe, chan:address:channel
  routine2:number <- start-running consumer:recipe, chan:address:channel
  wait-for-routine routine1:number
  wait-for-routine routine2:number
]