Changeset 7404cdc for tests/unified_locking
- Timestamp:
- May 21, 2021, 3:59:56 PM (3 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8d66610, b984d54
- Parents:
- 090a7c5
- Location:
- tests/unified_locking
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
tests/unified_locking/timeout_lock.cfa
r090a7c5 r7404cdc 33 33 34 34 for ( unsigned int i = 0; i < NoOfTimes + 3; i += 1 ) { 35 if ( wait( c_m, m, 1 `s ) ) {35 if ( wait( c_m, m, 1000000`ns ) ) { 36 36 // printf("Thread: %p signalled\n", active_thread()); // removed since can't expect non deterministic output 37 37 } else { … … 51 51 // Test calls which occur increasingly close to timeout value. 52 52 53 sleep( 100000 000`ns );53 sleep( 100000`ns ); 54 54 notify_one(c_m); 55 55 block(); 56 56 57 sleep( 500000 000`ns );57 sleep( 500000`ns ); 58 58 notify_one(c_m); 59 59 block(); 60 60 61 sleep( 900000 000`ns );61 sleep( 900000`ns ); 62 62 notify_one(c_m); 63 63 block(); 64 64 65 65 for ( unsigned int i = 0; i < NoOfTimes; i += 1 ) { 66 sleep( 999700 000`ns );66 sleep( 999700`ns ); 67 67 notify_one(c_m); 68 68 block(); … … 73 73 processor p[2]; 74 74 printf("Start Test 1: surface testing condition variable timeout routines\n"); 75 wait( c_m, 1`ns ); // bool wait( condition_variable(L) & this, Duration duration ); 75 wait( c_m, 1`ns ); // bool wait( condition_variable(L) & this, Duration duration ); 76 76 wait( c_m, 10, 1`ns ); // bool wait( condition_variable(L) & this, uintptr_t info, Duration duration ); 77 77 lock(m); wait( c_m, m, 1`ns ); unlock(m); // bool wait( condition_variable(L) & this, L & l, Duration duration );
Note: See TracChangeset
for help on using the changeset viewer.