]> Git Repo - linux.git/blob - scripts/atomic/fallbacks/inc_and_test
Merge tag 'apparmor-pr-2019-12-03' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / scripts / atomic / fallbacks / inc_and_test
1 cat <<EOF
2 /**
3  * ${atomic}_inc_and_test - increment and test
4  * @v: pointer of type ${atomic}_t
5  *
6  * Atomically increments @v by 1
7  * and returns true if the result is zero, or false for all
8  * other cases.
9  */
10 static inline bool
11 ${atomic}_inc_and_test(${atomic}_t *v)
12 {
13         return ${atomic}_inc_return(v) == 0;
14 }
15 EOF
This page took 0.036693 seconds and 4 git commands to generate.