summary refs log tree commit diff stats
path: root/lib/std/isolation.nim
Commit message (Expand)AuthorAgeFilesLines
* isolation spec update; WIP (#21843)Andreas Rumpf2023-05-141-3/+3
* Rename `=` to `=copy` in stdlib (#17781)Clyybber2021-04-191-1/+1
* clarify the docs of isolation (#17335)flywind2021-03-111-1/+7
* add warnings to std/isolation (#17270)flywind2021-03-051-0/+3
* Add unsafeIsolate and extract to std/isolation [backport:1.4] (#17263)flywind2021-03-051-0/+8
* fix #17264 [backport:1.4] (#17266)flywind2021-03-051-1/+2
* 'isolate' builtin; refs https://github.com/nim-lang/RFCs/issues/244 (#15011)Andreas Rumpf2020-07-201-0/+31
9:19:16 -0800 committer Kartik K. Agaram <vc@akkartik.com> 2014-12-08 19:19:16 -0800 399 - fix mu examples' href='/akkartik/mu/commit/fork.mu?h=main&id=be440cb6bf9fbdf317215cff2336cee63c7828ac'>be440cb6 ^
002cbf13 ^
cb9e66d7 ^
002cbf13 ^
0ca35d02 ^
d1c12218 ^
d4b4d018 ^
002cbf13 ^
4b62edd8 ^
be440cb6 ^
002cbf13 ^
cb9e66d7 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
                
                   
                                                              
                                
         
                                                  
          
   
  
 
                   
                                                              
                                
         
                                                  
          
   
  
(function main [
  (fork thread2:fn)
  (default-space:space-address <- new space:literal 2:literal)
  (x:integer <- copy 34:literal)
  { begin
    (print-integer nil:literal/terminal x:integer)
    (loop)
  }
])

(function thread2 [
  (default-space:space-address <- new space:literal 2:literal)
  (y:integer <- copy 35:literal)
  { begin
    (print-integer nil:literal/terminal y:integer)
    (loop)
  }
])