Changeset d923fca for tests/concurrency/waituntil/channels.cfa
- Timestamp:
- Feb 18, 2025, 12:54:23 PM (6 weeks ago)
- Branches:
- master
- Children:
- 8705a11
- Parents:
- 3e5fea2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tests/concurrency/waituntil/channels.cfa ¶
r3e5fea2 rd923fca 9 9 10 10 thread Server1 {}; 11 void main( Server1 & this) {11 void main( Server1 & ) { 12 12 long long int a, b, c, i = 0, myTotal = 0; 13 13 for( ;;i++ ) { … … 21 21 22 22 thread Drainer {}; // ensures that the changing when states of Server1 don't result in a deadlock 23 void main( Drainer & this) {23 void main( Drainer & ) { 24 24 long long int a, b, c, myTotal = 0; 25 25 for( ;; ) { … … 33 33 34 34 thread Churner {}; // performs non-waituntil try insert/remove operations to add churn/interference 35 void main( Churner & this) {35 void main( Churner & ) { 36 36 long long int out, myTotal = 0; 37 37 bool success;
Note: See TracChangeset
for help on using the changeset viewer.