diff options
author | bunnei <bunneidev@gmail.com> | 2022-04-07 16:01:26 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2022-04-11 21:13:40 -0700 |
commit | 8deaac8bd1707f56f29d61e427ad53964a0920fd (patch) | |
tree | d17e4ed20b9249507ad587aa0eb82e277daff614 /src/common/fiber.cpp | |
parent | fd5e1e80dac515ecb4a1cf9a12665b6645349370 (diff) |
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
Diffstat (limited to 'src/common/fiber.cpp')
-rw-r--r-- | src/common/fiber.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index 81b212e4b8..177a74deba 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp @@ -2,9 +2,10 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <mutex> + #include "common/assert.h" #include "common/fiber.h" -#include "common/spin_lock.h" #include "common/virtual_buffer.h" #include <boost/context/detail/fcontext.hpp> @@ -19,7 +20,7 @@ struct Fiber::FiberImpl { VirtualBuffer<u8> stack; VirtualBuffer<u8> rewind_stack; - SpinLock guard{}; + std::mutex guard; std::function<void(void*)> entry_point; std::function<void(void*)> rewind_point; void* rewind_parameter{}; |