Home
last modified time | relevance | path

Searched refs:pold (Results 1 – 1 of 1) sorted by relevance

/tools/testing/selftests/bpf/
A Dbpf_atomic.h49 #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