Changes in / [7192145:04994aa]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/cycle.go
r7192145 r04994aa 14 14 for true { 15 15 <- mine 16 next <- 0 16 select { 17 case next <- 0: 18 default: 19 } 17 20 count += 1 18 21 if clock_mode && atomic.LoadInt32(&stop) == 1 { break }
Note: See TracChangeset
for help on using the changeset viewer.