summaryrefslogtreecommitdiffstats
path: root/src/common/threadsafe_queue.h
diff options
context:
space:
mode:
authorMerry <git@mary.rs>2022-04-07 20:30:55 +0200
committerMerry <git@mary.rs>2022-04-07 20:30:55 +0200
commitc589db6adde8e4706065b1ab00bd6814b39dc8bb (patch)
tree19430d5342df4de9b8fc196012e53b09fb8f5f41 /src/common/threadsafe_queue.h
parentMerge pull request #8161 from liamwhite/gl-s8d24 (diff)
downloadyuzu-c589db6adde8e4706065b1ab00bd6814b39dc8bb.tar
yuzu-c589db6adde8e4706065b1ab00bd6814b39dc8bb.tar.gz
yuzu-c589db6adde8e4706065b1ab00bd6814b39dc8bb.tar.bz2
yuzu-c589db6adde8e4706065b1ab00bd6814b39dc8bb.tar.lz
yuzu-c589db6adde8e4706065b1ab00bd6814b39dc8bb.tar.xz
yuzu-c589db6adde8e4706065b1ab00bd6814b39dc8bb.tar.zst
yuzu-c589db6adde8e4706065b1ab00bd6814b39dc8bb.zip
Diffstat (limited to '')
-rw-r--r--src/common/threadsafe_queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/threadsafe_queue.h b/src/common/threadsafe_queue.h
index 2c8c2b90e..7272ac6e8 100644
--- a/src/common/threadsafe_queue.h
+++ b/src/common/threadsafe_queue.h
@@ -52,7 +52,7 @@ public:
// line before cv.wait
// TODO(bunnei): This can be replaced with C++20 waitable atomics when properly supported.
// See discussion on https://github.com/yuzu-emu/yuzu/pull/3173 for details.
- std::lock_guard lock{cv_mutex};
+ std::scoped_lock lock{cv_mutex};
cv.notify_one();
}
@@ -159,7 +159,7 @@ public:
template <typename Arg>
void Push(Arg&& t) {
- std::lock_guard lock{write_lock};
+ std::scoped_lock lock{write_lock};
spsc_queue.Push(t);
}