ck_pr_dec (3) - Linux Manuals

NAME

ck_pr_dec_ptr ck_pr_dec_ptr_zero ck_pr_dec_double ck_pr_dec_double_zero ck_pr_dec_char ck_pr_dec_char_zero ck_pr_dec_uint ck_pr_dec_uint_zero ck_pr_dec_int ck_pr_dec_int_zero ck_pr_dec_64 ck_pr_dec_64_zero ck_pr_dec_32 ck_pr_dec_32_zero ck_pr_dec_16 ck_pr_dec_16_zero ck_pr_dec_8 ck_pr_dec_8_zero - atomic decrement operations

LIBRARY

Concurrency Kit (libck, -lck)

SYNOPSIS

In ck_pr.h Ft void Fn ck_pr_dec_ptr void *target Ft void Fn ck_pr_dec_ptr_zero void *target bool *z Ft void Fn ck_pr_dec_double double *target Ft void Fn ck_pr_dec_double_zero double *target bool *z Ft void Fn ck_pr_dec_char char *target Ft void Fn ck_pr_dec_char_zero char *target bool *z Ft void Fn ck_pr_dec_uint unsigned int *target Ft void Fn ck_pr_dec_uint_zero unsigned int *target bool *z Ft void Fn ck_pr_dec_int int *target Ft void Fn ck_pr_dec_int_zero int *target bool *z Ft void Fn ck_pr_dec_64 uint64_t *target Ft void Fn ck_pr_dec_64_zero uint64_t *target bool *z Ft void Fn ck_pr_dec_32 uint32_t *target Ft void Fn ck_pr_dec_32_zero uint32_t *target bool *z Ft void Fn ck_pr_dec_16 uint16_t *target Ft void Fn ck_pr_dec_16_zero uint16_t *target bool *z Ft void Fn ck_pr_dec_8 uint8_t *target Ft void Fn ck_pr_dec_8_zero uint8_t *target bool *z

DESCRIPTION

The Fn ck_pr_dec 3 family of functions atomically decrement the value pointed to by Fa target .

RETURN VALUES

The ck_pr_dec_zero family of functions set the value pointed to by Fa z to true if the result of the decrement operation was 0. They set the value pointed to by Fa z to false otherwise.

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_neg3, ck_pr_not3, ck_pr_add3, ck_pr_sub3, ck_pr_and3, ck_pr_or3, ck_pr_xor3, ck_pr_cas3, ck_pr_btc3, ck_pr_bts3, ck_pr_btr3

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