mirror of
https://github.com/jetkvm/rv1106-system.git
synced 2026-05-21 05:20:41 +00:00
10 lines
213 B
Plaintext
Executable File
10 lines
213 B
Plaintext
Executable File
cat <<EOF
|
|
static __always_inline ${ret}
|
|
${arch}${atomic}_${pfx}${name}${sfx}_acquire(${params})
|
|
{
|
|
${ret} ret = ${arch}${atomic}_${pfx}${name}${sfx}_relaxed(${args});
|
|
__atomic_acquire_fence();
|
|
return ret;
|
|
}
|
|
EOF
|