atomic_clr_value()

QNX SDP8.0C Library ReferenceAPIDeveloper

Safely clear bits in a variable, returning the previous value (QNX OS)

Synopsis:

#include <atomic.h>

unsigned atomic_clr_value( volatile unsigned * loc,
                           unsigned bits );

Arguments:

loc
A pointer to the location that you want to clear bits in.
bits
The bits that you want to clear.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The atomic_clr_value() function is a thread-safe way of doing an (*loc) &= ~bits operation.

Note:
The atomic_clr_value() function may be slower than atomic_clr().

The atomic_*() functions are 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.

CAUTION:
Perform atomic operations only on objects that were allocated in normal memory mappings. On certain processors, atomic operations will cause a fault if the object is allocated in uncached memory.

The implementation of atomic functions may depend on the architecture. For more information, see LL/SC vs LSE atomic operations in the description in Building Embedded Systems of the cpuinfo area of the system page.

Returns:

The previous value at loc.

Examples:

To safely clear the 0x10101010 bits in a flag:

#include <atomic.h>
…

volatile unsigned flags;
unsigned previous;
…

previous = atomic_clr_value( &flags, 0x10101010 );

Classification:

QNX OS

Safety:
Cancellation pointNo
Signal handlerYes
ThreadYes
Page updated: