包含在查找更多文档专项支持资源 | 以 PDF 格式下载本书 (3391 KB)
atomic_clear_long_excl(9F)Name | Synopsis | Description | Return Values | Errors | Context | Attributes | See Also Name
Synopsis#include <sys/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. ContextThese functions can be called from user, interrupt, or kernel context. AttributesSee attributes(5) for descriptions of the following attributes:
See Alsoatomic_add(9F), atomic_and(9F), atomic_cas(9F), atomic_dec(9F), atomic_inc(9F), atomic_or(9F), atomic_swap(9F), membar_ops(9F), attributes(5), atomic_ops(3C) Name | Synopsis | Description | Return Values | Errors | Context | Attributes | See Also |
||||