fence (4b4193256c8d3bc3a5397b5cd9494c2ad386317d) | fence (f3e615b4db1fb7034f1d76dc307b77cc848f040e) |
---|---|
1cat <<EOF 2static __always_inline ${ret} | 1cat <<EOF 2static __always_inline ${ret} |
3${arch}${atomic}_${pfx}${name}${sfx}(${params}) | 3arch_${atomic}_${pfx}${name}${sfx}(${params}) |
4{ 5 ${ret} ret; 6 __atomic_pre_full_fence(); | 4{ 5 ${ret} ret; 6 __atomic_pre_full_fence(); |
7 ret = ${arch}${atomic}_${pfx}${name}${sfx}_relaxed(${args}); | 7 ret = arch_${atomic}_${pfx}${name}${sfx}_relaxed(${args}); |
8 __atomic_post_full_fence(); 9 return ret; 10} 11EOF | 8 __atomic_post_full_fence(); 9 return ret; 10} 11EOF |