Changeset 9c65169
- Timestamp:
- Jan 16, 2025, 1:49:27 PM (4 days ago)
- Branches:
- master
- Children:
- 3b340d68, 5cc53b2
- Parents:
- f6f7b52
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrency/waitfor/lexical_priority.cfa
rf6f7b52 r9c65169 32 32 void main( F & ) { 33 33 for ( Half ) f( t ); 34 yield( 5 ); // let g get ahead35 34 for ( Half ) f( t ); 36 35 } 36 37 37 thread G{}; 38 38 void main( G & ) { 39 yield( 5 ); // let f get ahead40 39 for ( Half ) g( t ); 41 40 for ( Half ) g( t ); … … 44 43 int main() { 45 44 F f; 45 yield(); // let f get ahead 46 46 G g; 47 47 }
Note: See TracChangeset
for help on using the changeset viewer.