atomic_nand() function
Atomic bitwise NAND. This routine atomically sets @a target to the bitwise NAND of @a target and @a value. (This operation is equivalent to target = ~(target & value).)
Arguments
target
Address of atomic variable.
Return value
Previous value of @a target.