about summary refs log tree commit diff stats
path: root/code/fm.rb
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-07-18 17:11:07 +0200
committerhut <hut@lavabit.com>2009-07-18 17:11:07 +0200
commit7d21f3d5f7e552c2449ea982b96ed1f9949ed732 (patch)
tree132e0e48081113f5793ebca72c304b40f698ac51 /code/fm.rb
parentd2ca37dd6e3a2f37ae49a97edbc7c0936cc423ba (diff)
downloadranger-7d21f3d5f7e552c2449ea982b96ed1f9949ed732.tar.gz
bugfix concerning multithreading
Directory#files sometimes contained illegal values: an array of strings
rather than an array of entries.
Diffstat (limited to 'code/fm.rb')
0 files changed, 0 insertions, 0 deletions
K. Agaram <vc@akkartik.com> 2015-05-05 21:19:56 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-05-05 21:19:56 -0700 1277' href='/akkartik/mu/commit/fork.mu?h=main&id=8923d6f658d09de800164b8fc6514475f49307b4'>8923d6f6 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

                                            

                              
   
             




                
   
             


        
# example program: running multiple routines

recipe main [
  start-running thread2:recipe
  {
    $print 34
    loop
  }
]

recipe thread2 [
  {
    $print 35
    loop
  }
]