Searched refs:__atomic_try_cmpxchg (Results 1 – 1 of 1) sorted by relevance
/Linux-v4.19/include/linux/ |
D | atomic.h | 473 #define __atomic_try_cmpxchg(type, _p, _po, _n) \ macro 483 #define atomic_try_cmpxchg(_p, _po, _n) __atomic_try_cmpxchg(, _p, _po, _n) 484 #define atomic_try_cmpxchg_relaxed(_p, _po, _n) __atomic_try_cmpxchg(_relaxed, _p, _po, _n) 485 #define atomic_try_cmpxchg_acquire(_p, _po, _n) __atomic_try_cmpxchg(_acquire, _p, _po, _n) 486 #define atomic_try_cmpxchg_release(_p, _po, _n) __atomic_try_cmpxchg(_release, _p, _po, _n)
|