summaryrefslogtreecommitdiffstats
path: root/src/common/threadsafe_queue.h
diff options
context:
space:
mode:
authorB3n30 <benediktthomas@gmail.com>2018-09-09 13:08:57 +0200
committerfearlessTobi <thm.frey@gmail.com>2019-02-15 22:12:54 +0100
commit41549365680f0aae3f82e5812f3470305e939f7d (patch)
tree027ec302d0119e4ded6cc4627c6fa3a94c8699ec /src/common/threadsafe_queue.h
parentMerge pull request #2112 from lioncash/shadowing (diff)
downloadyuzu-41549365680f0aae3f82e5812f3470305e939f7d.tar
yuzu-41549365680f0aae3f82e5812f3470305e939f7d.tar.gz
yuzu-41549365680f0aae3f82e5812f3470305e939f7d.tar.bz2
yuzu-41549365680f0aae3f82e5812f3470305e939f7d.tar.lz
yuzu-41549365680f0aae3f82e5812f3470305e939f7d.tar.xz
yuzu-41549365680f0aae3f82e5812f3470305e939f7d.tar.zst
yuzu-41549365680f0aae3f82e5812f3470305e939f7d.zip
Diffstat (limited to '')
-rw-r--r--src/common/threadsafe_queue.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/common/threadsafe_queue.h b/src/common/threadsafe_queue.h
index f553efdc9..4fdcecca0 100644
--- a/src/common/threadsafe_queue.h
+++ b/src/common/threadsafe_queue.h
@@ -8,6 +8,7 @@
// single reader, single writer queue
#include <atomic>
+#include <condition_variable>
#include <cstddef>
#include <mutex>
#include <utility>
@@ -39,12 +40,13 @@ public:
template <typename Arg>
void Push(Arg&& t) {
// create the element, add it to the queue
- write_ptr->current = std::forward<Arg>(t);
+ write_ptr->current = std::move(t);
// set the next pointer to a new element ptr
// then advance the write pointer
ElementPtr* new_ptr = new ElementPtr();
write_ptr->next.store(new_ptr, std::memory_order_release);
write_ptr = new_ptr;
+ cv.notify_one();
++size;
}
@@ -67,6 +69,7 @@ public:
--size;
ElementPtr* tmpptr = read_ptr;
+
read_ptr = tmpptr->next.load(std::memory_order_acquire);
t = std::move(tmpptr->current);
tmpptr->next.store(nullptr);
@@ -74,6 +77,14 @@ public:
return true;
}
+ bool PopWait(T& t) {
+ if (Empty()) {
+ std::unique_lock<std::mutex> lock(cv_mutex);
+ cv.wait(lock, [this]() { return !Empty(); });
+ }
+ return Pop(t);
+ }
+
// not thread-safe
void Clear() {
size.store(0);
@@ -101,6 +112,8 @@ private:
ElementPtr* write_ptr;
ElementPtr* read_ptr;
std::atomic_size_t size{0};
+ std::mutex cv_mutex;
+ std::condition_variable cv;
};
// a simple thread-safe,
@@ -135,6 +148,10 @@ public:
return spsc_queue.Pop(t);
}
+ bool PopWait(T& t) {
+ return spsc_queue.PopWait(t);
+ }
+
// not thread-safe
void Clear() {
spsc_queue.Clear();