about summary refs log tree commit diff stats
path: root/core/ports/linux-blob/port-blob-make.patch
Commit message (Expand)AuthorAgeFilesLines
* core and tools revisionSilvino Silva2017-02-271-1/+1
* core revisionSilvino Silva2017-02-201-1/+1
* core ports correct linux-blob portSilvino Silva2017-02-191-0/+11
b4970828ff5743a5b05e3287'>83d8299d ^
8923d6f6 ^
bc643692 ^
8923d6f6 ^



1ead3562 ^
8923d6f6 ^
bc643692 ^
8923d6f6 ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

                                            
          
                       
   
             



        
             
   
             


        
# example program: running multiple routines

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

def thread2 [
  {
    $print 35
    loop
  }
]