Changes in / [5e82d56:b3ed43a3]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/cycle.go
r5e82d56 rb3ed43a3 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.