diff options
author | bunnei <bunneidev@gmail.com> | 2020-06-28 12:37:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 12:37:50 -0400 |
commit | b05795d704e0c194215f815a5703db09e524b59a (patch) | |
tree | ecf4023b4ee0c91555c1d8263762fcb9dcb04a17 /src/common/spin_lock.cpp | |
parent | 8596a127724e9d7e27c4d7d9becd323c8d6d4f8e (diff) | |
parent | 2f8947583f2f0af4058600243d6c1d244e3c4890 (diff) |
Merge pull request #3955 from FernandoS27/prometheus-2b
Remake Kernel Scheduling, CPU Management & Boot Management (Prometheus)
Diffstat (limited to 'src/common/spin_lock.cpp')
-rw-r--r-- | src/common/spin_lock.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/spin_lock.cpp b/src/common/spin_lock.cpp index c7b46aac6..c1524220f 100644 --- a/src/common/spin_lock.cpp +++ b/src/common/spin_lock.cpp @@ -20,7 +20,7 @@ namespace { -void thread_pause() { +void ThreadPause() { #if __x86_64__ _mm_pause(); #elif __aarch64__ && _MSC_VER @@ -30,13 +30,13 @@ void thread_pause() { #endif } -} // namespace +} // Anonymous namespace namespace Common { void SpinLock::lock() { while (lck.test_and_set(std::memory_order_acquire)) { - thread_pause(); + ThreadPause(); } } |