Changeset d60a4c2 for tests/concurrency/signal/disjoint.cfa
- Timestamp:
- Jan 11, 2025, 5:48:46 PM (8 months ago)
- Branches:
- master
- Children:
- f886608
- Parents:
- 7d65715f (diff), 32a119e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrency/signal/disjoint.cfa
r7d65715f rd60a4c2 65 65 } 66 66 67 void main( Barger & this) {67 void main( Barger & ) { 68 68 while( !all_done ) { 69 69 barge( globals.data ); … … 93 93 } 94 94 95 void main( Waiter & this) {95 void main( Waiter & ) { 96 96 while( wait( globals.mut, globals.data ) ) { KICK_WATCHDOG; yield(); } 97 97 } … … 122 122 } 123 123 124 void main( Signaller & this) {124 void main( Signaller & ) { 125 125 while( !all_done ) { 126 126 logic( globals.mut ); … … 131 131 //------------------------------------------------------------------------------ 132 132 // Main loop 133 int main( int argc, char* argv[]) {133 int main() { 134 134 srandom( time( NULL ) ); 135 135 all_done = false;
Note:
See TracChangeset
for help on using the changeset viewer.