3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-23 07:35:54 +00:00

10 lines
209 B
Plaintext
Raw Normal View History

2021-05-27 00:09:36 +05:00
cat <<EOF
static __always_inline ${ret}
2021-10-02 21:09:28 +05:00
arch_${atomic}_${pfx}${name}${sfx}_acquire(${params})
2021-05-27 00:09:36 +05:00
{
2021-10-02 21:09:28 +05:00
${ret} ret = arch_${atomic}_${pfx}${name}${sfx}_relaxed(${args});
2021-05-27 00:09:36 +05:00
__atomic_acquire_fence();
return ret;
}
EOF