TDME2 1.9.121
SpinLock.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#include <atomic>
7#include <string>
8
9using std::atomic_flag;
10using std::string;
11
12/**
13 * Spin Lock implementation.
14 * @author Andreas Drewke
15 */
17public:
18 /**
19 * @brief Public constructor
20 * @param name name
21 */
22 SpinLock(const string& name);
23
24 /**
25 * @brief Destroys the spin lock
26 */
27 ~SpinLock();
28
29 /**
30 * @brief Tries to locks the spin lock
31 */
32 inline bool tryLock() {
33 if (locked.test_and_set(std::memory_order_acquire) == false) return true;
34 return false;
35 }
36
37 /**
38 * @brief Locks the spin lock, additionally spin lock locks will block until other locks have been unlocked.
39 */
40 inline void lock() {
41 while (locked.test_and_set(std::memory_order_acquire));
42 }
43
44 /**
45 * @brief Unlocks this spin lock
46 */
47 inline void unlock() {
48 locked.clear(std::memory_order_release);
49 }
50
51private:
52 string name;
53 atomic_flag locked = ATOMIC_FLAG_INIT;
54};
Spin Lock implementation.
Definition: SpinLock.h:16
~SpinLock()
Destroys the spin lock.
Definition: SpinLock.cpp:15
SpinLock(const string &name)
Public constructor.
Definition: SpinLock.cpp:11
void unlock()
Unlocks this spin lock.
Definition: SpinLock.h:47
void lock()
Locks the spin lock, additionally spin lock locks will block until other locks have been unlocked.
Definition: SpinLock.h:40
bool tryLock()
Tries to locks the spin lock.
Definition: SpinLock.h:32