Changeset 2ad5e1d5 for libcfa/src/concurrency
- Timestamp:
- Oct 23, 2023, 8:58:42 AM (15 months ago)
- Branches:
- master
- Children:
- 7b84d3e
- Parents:
- 8df19af
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/locks.hfa
r8df19af r2ad5e1d5 184 184 185 185 #if defined(__ARM_ARCH) 186 __asm__ __volatile__ ( "DMB ISH" ::: ) 186 __asm__ __volatile__ ( "DMB ISH" ::: ); 187 187 #endif 188 188 … … 192 192 193 193 #if defined(__ARM_ARCH) 194 __asm__ __volatile__ ( "DMB ISH" ::: ) 194 __asm__ __volatile__ ( "DMB ISH" ::: ); 195 195 #endif 196 196 … … 198 198 199 199 #if defined(__ARM_ARCH) 200 __asm__ __volatile__ ( "DMB ISH" ::: ) 200 __asm__ __volatile__ ( "DMB ISH" ::: ); 201 201 #endif 202 202 } … … 204 204 static inline void unlock(mcs_spin_lock & l, mcs_spin_node & n) { 205 205 #if defined(__ARM_ARCH) 206 __asm__ __volatile__ ( "DMB ISH" ::: ) 206 __asm__ __volatile__ ( "DMB ISH" ::: ); 207 207 #endif 208 208 … … 212 212 213 213 #if defined(__ARM_ARCH) 214 __asm__ __volatile__ ( "DMB ISH" ::: ) 214 __asm__ __volatile__ ( "DMB ISH" ::: ); 215 215 #endif 216 216
Note: See TracChangeset
for help on using the changeset viewer.