ck_pr_btr (3) - Linux Manuals

NAME

ck_pr_btr_ptr ck_pr_btr_uint ck_pr_btr_int ck_pr_btr_64 ck_pr_btr_32 ck_pr_btr_16 - atomic bit test-and-reset operations

LIBRARY

Concurrency Kit (libck, -lck)

SYNOPSIS

In ck_pr.h Ft bool Fn ck_pr_btr_ptr void *target unsigned int bit_index Ft bool Fn ck_pr_btr_uint uint *target unsigned int bit_index Ft bool Fn ck_pr_btr_int int *target unsigned int bit_index Ft bool Fn ck_pr_btr_64 uint64_t *target unsigned int bit_index Ft bool Fn ck_pr_btr_32 uint32_t *target unsigned int bit_index Ft bool Fn ck_pr_btr_16 uint16_t *target unsigned int bit_index

DESCRIPTION

The Fn ck_pr_btr 3 family of functions atomically fetch the value of the bit in Fa target at index Fa bit_index and set that bit to 0.

RETURN VALUES

This family of functions returns the original value of the bit at offset Fa bit_index that is in the value pointed to by Fa target .

SEE ALSO

ck_pr_fence_load3, ck_pr_fence_load_depends3, ck_pr_fence_store3, ck_pr_fence_memory3, ck_pr_load3, ck_pr_store3, ck_pr_fas3, ck_pr_faa3, ck_pr_inc3, ck_pr_dec3, ck_pr_neg3, ck_pr_not3, ck_pr_sub3, ck_pr_and3, ck_pr_or3, ck_pr_xor3, ck_pr_add3, ck_pr_btc3, ck_pr_bts3, ck_pr_cas3

Additional information available at http://concurrencykit.org/