Changeset 0fd9c68 for libcfa/src/bits/atomic.hfa
- Timestamp:
- Jul 8, 2026, 5:51:57 PM (37 hours ago)
- Branches:
- master
- Children:
- c67158d7
- Parents:
- b3609b2
- File:
-
- 1 edited
-
libcfa/src/bits/atomic.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/atomic.hfa
rb3609b2 r0fd9c68 10 10 // Created On : Thu May 25 15:22:46 2023 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jul 5 23:03:28 202613 // Update Count : 7812 // Last Modified On : Mon Jul 6 16:29:38 2026 13 // Update Count : 86 14 14 // 15 15 … … 60 60 // Short Names and reference parameters. 61 61 62 // Cforall polymorphism does not work because it takes the address of the builtin atomic and C does not generate a 63 // wrapper function for builtins. 64 62 65 #define AtomicLdm( lock, memorder ) __atomic_load_n( (&(lock)), memorder ) 63 66 #define AtomicLd( lock ) AtomicLdm( lock, __ATOMIC_ACQUIRE )
Note:
See TracChangeset
for help on using the changeset viewer.