xref: /linux/scripts/atomic/fallbacks/inc_not_zero (revision 4d8e5cd233db0c11e6ad35b0e40f4a2d284e1e18)
1cat <<EOF
2/**
3 * ${atomic}_inc_not_zero - increment unless the number is zero
4 * @v: pointer of type ${atomic}_t
5 *
6 * Atomically increments @v by 1, if @v is non-zero.
7 * Returns true if the increment was done.
8 */
9static inline bool
10${atomic}_inc_not_zero(${atomic}_t *v)
11{
12	return ${atomic}_add_unless(v, 1, 0);
13}
14EOF
15