- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrent/signal/wait.cfa
rc701332a r107b01a 98 98 } 99 99 100 __ atomic_fetch_sub( &waiter_left, 1, __ATOMIC_SEQ_CST);100 __sync_fetch_and_sub_4( &waiter_left, 1); 101 101 } 102 102 … … 109 109 } 110 110 111 __ atomic_fetch_sub( &waiter_left, 1, __ATOMIC_SEQ_CST);111 __sync_fetch_and_sub_4( &waiter_left, 1); 112 112 } 113 113 … … 120 120 } 121 121 122 __ atomic_fetch_sub( &waiter_left, 1, __ATOMIC_SEQ_CST);122 __sync_fetch_and_sub_4( &waiter_left, 1); 123 123 } 124 124 … … 131 131 } 132 132 133 __ atomic_fetch_sub( &waiter_left, 1, __ATOMIC_SEQ_CST);133 __sync_fetch_and_sub_4( &waiter_left, 1); 134 134 } 135 135
Note:
See TracChangeset
for help on using the changeset viewer.