Changeset 10b5970 for tests/concurrency/mutexstmt
- Timestamp:
- Jan 7, 2025, 3:22:19 PM (2 weeks ago)
- Branches:
- master
- Children:
- 190a833
- Parents:
- 70670e7
- Location:
- tests/concurrency/mutexstmt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrency/mutexstmt/locks.cfa
r70670e7 r10b5970 12 12 int count = 0; 13 13 14 void main( T_Mutex & this) {14 void main( T_Mutex & ) { 15 15 for (unsigned int i = 0; i < num_times; i++) { 16 16 mutex ( m1 ) count++; … … 35 35 thread T_Multi {}; 36 36 37 void main( T_Multi & this) {37 void main( T_Multi & ) { 38 38 for (unsigned int i = 0; i < num_times; i++) { 39 39 refTest( m1 ); … … 81 81 thread T_Multi_Poly {}; 82 82 83 void main( T_Multi_Poly & this) {83 void main( T_Multi_Poly & ) { 84 84 for (unsigned int i = 0; i < num_times; i++) { 85 85 refTest( l1 ); -
tests/concurrency/mutexstmt/monitors.cfa
r70670e7 r10b5970 16 16 bool startFlag = false; 17 17 18 void main( T_Mutex & this) {18 void main( T_Mutex & ) { 19 19 for (unsigned int i = 0; i < num_times; i++) { 20 20 mutex ( m1 ) count++; … … 30 30 thread T_Multi {}; 31 31 32 void main( T_Multi & this) {32 void main( T_Multi & ) { 33 33 for (unsigned int i = 0; i < num_times; i++) { 34 34 mutex ( m1 ) {
Note: See TracChangeset
for help on using the changeset viewer.