cat <<EOF
static __always_inline bool
raw_${atomic}_inc_not_zero(${atomic}_t *v)
{
return raw_${atomic}_add_unless(v, 1, 0);
}
EOF