summary refs log tree commit diff stats
path: root/all_tests.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-02-15 23:50:07 +0100
committerhut <hut@lavabit.com>2010-02-15 23:56:56 +0100
commit8f50c0045fb1f737c6ef8f99f665adac0915e3a0 (patch)
tree14b8be2f79df347e593528f369f68666f55974b4 /all_tests.py
parent0086b834f25578ce74a3d3e16978e4a0b913c9ef (diff)
downloadranger-8f50c0045fb1f737c6ef8f99f665adac0915e3a0.tar.gz
defaults/apps: added documentation
Diffstat (limited to 'all_tests.py')
0 files changed, 0 insertions, 0 deletions
rtik.com> 2016-09-17 00:31:55 -0700 3379' href='/akkartik/mu/commit/channel.mu?h=main&id=08f4628e8b858120fe3547d8e5431d9abfe46bf8'>08f4628e ^
b96af395 ^
9458918f ^
ce87c19e ^
b96af395 ^
ce87c19e ^
b96af395 ^
b0bf5321 ^
ce87c19e ^
b96af395 ^
f192d655 ^
ee72abae ^
b96af395 ^
f192d655 ^
760f683f ^
b96af395 ^
77d5b5d6 ^
4a48bedc ^
b96af395 ^

9458918f ^
5b22547b ^
b96af395 ^
08f4628e ^
b96af395 ^

f192d655 ^
b96af395 ^
f192d655 ^
1ead3562 ^
77d5b5d6 ^
760f683f ^
b96af395 ^
192d59d3 ^

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
44
45

                                                                
                                                   
                                          
             
             
         
                  
   
                                  
                      
                                                  
                             
 
                         
                 
        
   
            
 
 
                                                           
                                             
             
             

                                      
                                            
                 
                                                  
                                  

        
   
 
 
          
             
                                                                  
                                                                  

                                                

                           
 
# example program: communicating between routines using channels

def producer sink:&:sink:char -> sink:&:sink:char [
  # produce characters 1 to 5 on a channel
  local-scope
  load-inputs
  # n = 0
  n:char <- copy 0
  {
    done?:bool <- 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
  }
  close sink
]

def consumer source:&:source:char -> source:&:source:char [
  # consume and print integers from a channel
  local-scope
  load-inputs
  {
    # read an integer from the channel
    n:char, eof?:bool, source <- read source
    break-if eof?
    # other threads might get between these prints
    $print [consume: ], n:char, [ 
]
    loop
  }
]

def main [
  local-scope
  source:&:source:char, sink:&:sink:char <- new-channel 3/capacity
  # create two background 'routines' that communicate by a channel
  routine1:num <- start-running producer, sink
  routine2:num <- start-running consumer, source
  wait-for-routine routine1
  wait-for-routine routine2
]