atomic_sub()
QNX SDP8.0C Library ReferenceAPIDeveloper
Safely subtract from a variable (QNX OS)
Synopsis:
#include <atomic.h>
void atomic_sub( volatile unsigned * loc,
unsigned decr );
Arguments:
- loc
- A pointer to the location that you want to subtract a value from.
- decr
- The number that you want to subtract.
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The atomic_sub() function is a thread-safe way of doing a
(*loc) -= decr
operation.
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.
Examples:
Safely subtract 1 from a counter:
#include <atomic.h>
…
volatile unsigned count;
…
atomic_sub( &count, 1 );
Classification:
Safety: | |
---|---|
Cancellation point | No |
Signal handler | Yes |
Thread | Yes |
Page updated: