man pages section 9: DDI and DKI Kernel Functions
只搜寻这本书
查看这本书:
以 PDF 格式下载本书 (3391 KB)

atomic_clear_long_excl(9F)

Name | Synopsis | Description | Return Values | Errors | Context | Attributes | See Also

Name

    atomic_bits, atomic_set_long_excl, atomic_clear_long_excl– atomic set and clear bit operations

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);

Description

    The 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 Values

    The 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.

Errors

    No errors are defined.

Context

    These functions can be called from user, interrupt, or kernel context.

Attributes

    See attributes(5) for descriptions of the following attributes:

    ATTRIBUTE TYPE

    ATTRIBUTE VALUE

    Interface Stability

    Evolving

See Also

SunOS 5.10 Last Revised 16 Jan 2006

Name | Synopsis | Description | Return Values | Errors | Context | Attributes | See Also