logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

qb_atomic_int_compare_and_exchange - Compares oldval with the integer pointed to by atomic and if they

Description

       Also acts as a memory barrier.

Name

       qb_atomic_int_compare_and_exchange  -  Compares  oldval with the integer pointed to by atomic and if they
       are equal, atomically exchanges *atomic with newval.

Params

atomicapointertoanintegeroldvaltheassumedoldvalueof*atomicnewvalthenewvalueof*atomic

Return Value

       QB_TRUE, if *atomic was equal oldval. QB_FALSE otherwise.

See Also

qb_atomic_int_set(3), qb_atomic_int_get(3), qb_atomic_int_add(3), qb_atomic_init(3),
       qb_atomic_pointer_get(3), qb_atomic_int_exchange_and_add(3), qb_atomic_pointer_compare_and_exchange(3),
       qb_atomic_pointer_set(3)

Synopsis

#include<qb/qbatomic.h>int32_tqb_atomic_int_compare_and_exchange(
           volatileint32_tQB_GNUC_MAY_ALIAS*atomic,  /* a pointer to an integer */
           int32_toldval,  /* the assumed old value of *atomic */
           int32_tnewval   /* the new value of *atomic*/
       );

See Also