Changes between Version 4 and Version 5 of Sysel
- Timestamp:
- 2010-04-11T10:33:24Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Sysel
v4 v5 111 111 {{{ 112 112 fun ReadBlocksParallel(start_addr, count : int) : Block[] is 113 var fblock : future Block[];113 var fblock : (future Block)[]; 114 114 115 115 for i in range(0, count) do … … 120 120 -- All reads are now being executed in parallel. 121 121 122 -- Each array element is implicitly converted from future Block [] to Block[].122 -- Each array element is implicitly converted from future Block to Block. 123 123 -- This blocks until all data has been received. 124 124 return fblock;