Changeset be1d00c
- Timestamp:
- Nov 30, 2022, 7:18:38 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- dd46fd3
- Parents:
- 5a4b403
- Location:
- tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrent/readyQ/leader_spin.cfa
r5a4b403 rbe1d00c 50 50 for(i; nthreads) { 51 51 while( threads[i]->idx != lead_idx ) { 52 Pause();52 sched_yield(); 53 53 } 54 54 } -
tests/io/away_fair.cfa
r5a4b403 rbe1d00c 41 41 42 42 if(last == curr) { 43 Pause();43 sched_yield(); 44 44 continue; 45 45 } -
tests/io/comp_fair.cfa
r5a4b403 rbe1d00c 52 52 53 53 if(last == curr) { 54 Pause();54 sched_yield(); 55 55 continue; 56 56 }
Note: See TracChangeset
for help on using the changeset viewer.