Repository URL to install this package:
|
Version:
20.11.0-trunk ▾
|
linux-headers-current-sunxi64
/
usr
/
src
/
linux-headers-5.8.10-sunxi64
/
scripts
/
atomic
/
fallbacks
/
try_cmpxchg
|
|---|
cat <<EOF
static __always_inline bool
${arch}${atomic}_try_cmpxchg${order}(${atomic}_t *v, ${int} *old, ${int} new)
{
${int} r, o = *old;
r = ${arch}${atomic}_cmpxchg${order}(v, o, new);
if (unlikely(r != o))
*old = r;
return likely(r == o);
}
EOF