Query: atomic_bits
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
atomic_bits(3C) Standard C Library Functions atomic_bits(3C)NAMEatomic_bits, atomic_set_long_excl, atomic_clear_long_excl - atomic set and clear bit operationsSYNOPSIS#include <atomic.h> int atomic_set_long_excl(volatile ulong_t *target, uint_t bit); int atomic_clear_long_excl(volatile ulong_t *target, uint_t bit);DESCRIPTIONThe atomic_set_long_excl() and atomic_clear_long_excl() functions perform an exclusive atomic bit set or clear operation on target. The value of bit specifies the number of the bit to be modified within target. Bits are numbered from zero to one less than the maximum number of bits in a long. If the value of bit falls outside of this range, the result of the operation is undefined.RETURN VALUESThe atomic_set_long_excl() and atomic_clear_long_excl() functions return 0 if bit was successfully set or cleared. They return -1 if bit was already set or cleared.ERRORSNo errors are defined.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+SEE ALSOatomic_add(3C), atomic_and(3C), atomic_cas(3C), atomic_dec(3C), atomic_inc(3C), atomic_or(3C), atomic_swap(3C), membar_ops(3C), attributes(5), atomic_ops(9F) SunOS 5.11 13 May 2005 atomic_bits(3C)
Related Man Pages |
---|
atomic_or_16_nv(3c) - opensolaris |
atomic_or_8(3c) - opensolaris |
atomic_swap_8(3c) - opensolaris |
atomic_swap_ptr(3c) - opensolaris |
atomic_swap_uchar(3c) - opensolaris |
Similar Topics in the Unix Linux Community |
---|
32 or 64 bit |
Compiling 32 bit app on 64 bit kernal |
Solaris 64-bit to 32-bit |
c program to set the m-bit to n-bit |
How to check the software is 32 bit or 64 bit? |