diff options
author | Richard Braun <rbraun@sceen.net> | 2017-06-13 21:23:50 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-06-13 21:23:50 +0200 |
commit | 72ed0dc2f153e7cf1d6e96f86a773bbe490e9e1c (patch) | |
tree | 8161eda7bec209778b30fdfdb19f154df4cab2a7 /kern/atomic.h | |
parent | 61df7f19dfe3b56abf6c4d00589414c60716ac2b (diff) |
Various atomic access fixes
Diffstat (limited to 'kern/atomic.h')
-rw-r--r-- | kern/atomic.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kern/atomic.h b/kern/atomic.h index 63f0ac73..6c0105dd 100644 --- a/kern/atomic.h +++ b/kern/atomic.h @@ -135,7 +135,4 @@ MACRO_END #define atomic_fetch_sub_acq_rel(ptr, val) \ atomic_fetch_sub(ptr, val, ATOMIC_ACQ_REL) -#define atomic_or_acq_rel(ptr, val) atomic_or(ptr, val, ATOMIC_ACQ_REL) -#define atomic_and_acq_rel(ptr, val) atomic_and(ptr, val, ATOMIC_ACQ_REL) - #endif /* _KERN_ATOMIC_H */ |