summaryrefslogtreecommitdiffhomepage
path: root/compat/spinlock.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-01-16 05:58:48 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-01-16 07:49:13 +0100
commit03d28dde1635e36508cff1f9eabc265cdb5febb9 (patch)
treeee62d5851315c7b4c2c3c05f8a72e29a6dd4a1e8 /compat/spinlock.hpp
parentf8faca0abecafd6e65d07bd0fdd618070114cdfa (diff)
compat/mutex: remove
Always use the adaptive QMutex.
Diffstat (limited to 'compat/spinlock.hpp')
-rw-r--r--compat/spinlock.hpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/compat/spinlock.hpp b/compat/spinlock.hpp
deleted file mode 100644
index b94df7c8..00000000
--- a/compat/spinlock.hpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#pragma once
-
-#include "export.hpp"
-#include "macros1.h"
-#include <atomic>
-
-struct OTR_COMPAT_EXPORT spinlock_guard final
-{
- spinlock_guard(const spinlock_guard&) = delete;
- spinlock_guard& operator=(const spinlock_guard&) = delete;
- constexpr spinlock_guard(spinlock_guard&&) noexcept = default;
-
- cc_forceinline
- spinlock_guard(std::atomic_flag* lock) noexcept : spinlock_guard(*lock) {}
-
- cc_forceinline
- spinlock_guard(std::atomic_flag& lock) noexcept : lock(lock)
- {
- while (lock.test_and_set(std::memory_order_acquire))
- (void)0;
- }
-
- cc_forceinline
- ~spinlock_guard() noexcept
- {
- lock.clear(std::memory_order_release);
- }
-
-private:
- std::atomic_flag& lock;
-};