From 5b9d17b4854f82561be73523dce8520bcb49b1d2 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sun, 12 Apr 2020 12:00:57 +0200 Subject: [PATCH] atomics: remove unused macros --- src/util-atomic.h | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/util-atomic.h b/src/util-atomic.h index 410c1a43341b..0b7e5593e9c3 100644 --- a/src/util-atomic.h +++ b/src/util-atomic.h @@ -217,24 +217,6 @@ #define SC_ATOMIC_AND(name, val) \ SCAtomicFetchAndAnd(&(name ## _sc_atomic__), (val)) -/** - * \brief Bitwise NAND a value to our atomic variable - * - * \param name the atomic variable - * \param val the value to NAND to the variable - */ -#define SC_ATOMIC_NAND(name, val) \ - SCAtomicFetchAndNand(&(name ## _sc_atomic__), (val)) - -/** - * \brief Bitwise XOR a value to our atomic variable - * - * \param name the atomic variable - * \param val the value to XOR to the variable - */ -#define SC_ATOMIC_XOR(name, val) \ - SCAtomicFetchAndXor(&(name ## _sc_atomic__), (val)) - /** * \brief atomic Compare and Switch *