]> Git Repo - linux.git/blob - scripts/atomic/kerneldoc/try_cmpxchg
ASoC: Merge v6.5-rc2
[linux.git] / scripts / atomic / kerneldoc / try_cmpxchg
1 cat <<EOF
2 /**
3  * ${class}${atomicname}() - atomic compare and exchange with ${desc_order} ordering
4  * @v: pointer to ${atomic}_t
5  * @old: pointer to ${int} value to compare with
6  * @new: ${int} value to assign
7  *
8  * If (@v == @old), atomically updates @v to @new with ${desc_order} ordering.
9  * Otherwise, updates @old to the current value of @v.
10  *
11  * ${desc_noinstr}
12  *
13  * Return: @true if the exchange occured, @false otherwise.
14  */
15 EOF
This page took 0.036431 seconds and 4 git commands to generate.