summaryrefslogtreecommitdiff
path: root/scripts/atomic/fallbacks/add_unless
blob: 87ed46cb69871f673b6ffcd019333303e78eb565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if /bin/sh ${ATOMICDIR}/chkdup.sh arch_${atomic}_add_unless add_unless
then
cat << EOF
/**
 * arch_${atomic}_add_unless - add unless the number is already a given value
 * @v: pointer of type ${atomic}_t
 * @a: the amount to add to v...
 * @u: ...unless v is equal to u.
 *
 * Atomically adds @a to @v with full ordering, but only if @v was not already @u.
 * Returns @true if the addition was done.
 */
EOF
fi
cat << EOF
static __always_inline bool
arch_${atomic}_add_unless(${atomic}_t *v, ${int} a, ${int} u)
{
	return arch_${atomic}_fetch_add_unless(v, a, u) != u;
}
EOF