blob: 71bbd23ce4bca710a727e26c9c73fa311989c8d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
cat <<EOF
/**
* ${class}${atomicname}() - atomic decrement and test if zero with ${desc_order} ordering
* @v: pointer to ${atomic}_t
*
* Atomically updates @v to (@v - 1) with ${desc_order} ordering.
*
* ${desc_noinstr}
*
* Return: @true if the resulting value of @v is zero, @false otherwise.
*/
EOF
|