This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs. |
Safely clear a variable, returning the previous value
#include <atomic.h> unsigned atomic_clr_value( volatile unsigned * loc, unsigned bits );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The atomic_clr_value() function is a thread-safe way of doing an (*loc) &= ~bits operation.
The atomic_*() functions are guaranteed to complete without being preempted by another thread, even in a symmetric-multiprocessing system.
When modifying a variable shared between a thread and an interrupt, you must either disable interrupts or use the atomic_*() functions.
The atomic_*() functions are also useful for modifying variables that are referenced by more than one thread (that aren't necessarily in the same process) without having to use a mutex.
The atomic_clr_value() function may be slower than atomic_clr(). |
The previous value of loc's contents.
To safely clear the 0x10101010 bits in a flag:
#include <atomic.h> ... volatile unsigned flags; unsigned previous; ... previous = atomic_clr_value( &flags, 0x10101010 );
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | Yes |
Signal handler | Yes |
Thread | Yes |
atomic_add(), atomic_add_value(), atomic_clr(), atomic_set(), atomic_set_value(), atomic_sub(), atomic_sub_value(), atomic_toggle(), atomic_toggle_value()