diff options
Diffstat (limited to 'src/common/spin_lock.cpp')
| -rw-r--r-- | src/common/spin_lock.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/spin_lock.cpp b/src/common/spin_lock.cpp index 82a1d39ff..c7b46aac6 100644 --- a/src/common/spin_lock.cpp +++ b/src/common/spin_lock.cpp | |||
| @@ -35,8 +35,9 @@ void thread_pause() { | |||
| 35 | namespace Common { | 35 | namespace Common { |
| 36 | 36 | ||
| 37 | void SpinLock::lock() { | 37 | void SpinLock::lock() { |
| 38 | while (lck.test_and_set(std::memory_order_acquire)) | 38 | while (lck.test_and_set(std::memory_order_acquire)) { |
| 39 | thread_pause(); | 39 | thread_pause(); |
| 40 | } | ||
| 40 | } | 41 | } |
| 41 | 42 | ||
| 42 | void SpinLock::unlock() { | 43 | void SpinLock::unlock() { |