aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/atomic/fallbacks/dec_if_positive
blob: cfb380bd2da6800d52ba5c18dda9a88958836214 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cat <<EOF
static __always_inline ${ret}
${atomic}_dec_if_positive(${atomic}_t *v)
{
	${int} dec, c = ${atomic}_read(v);

	do {
		dec = c - 1;
		if (unlikely(dec < 0))
			break;
	} while (!${atomic}_try_cmpxchg(v, &c, dec));

	return dec;
}
EOF