Searched refs:pold (Results 1 – 1 of 1) sorted by relevance
| /tools/testing/selftests/bpf/ |
| A D | bpf_atomic.h | 49 #define try_cmpxchg(p, pold, new) \ argument 51 __unqual_typeof(*(pold)) __o = *(pold); \ 54 *(pold) = __r; \ 58 #define try_cmpxchg_relaxed(p, pold, new) try_cmpxchg(p, pold, new) argument 60 #define try_cmpxchg_acquire(p, pold, new) try_cmpxchg(p, pold, new) argument 134 #define atomic_try_cmpxchg_relaxed(p, pold, new) \ argument 135 try_cmpxchg_relaxed(&(p)->counter, pold, new) 137 #define atomic_try_cmpxchg_acquire(p, pold, new) \ argument 138 try_cmpxchg_acquire(&(p)->counter, pold, new)
|
Completed in 3 milliseconds