summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2016-04-14 13:54:06 +0200
committerMerryMage <MerryMage@users.noreply.github.com>2016-04-14 14:59:58 +0200
commit3c710f9b104acf218bce1054bd325f9a2515f8ca (patch)
treec94ba9cccdc9bb0e36d5ad3f95880e239762006a /src/common
parentcommon/thread: Correct code style (diff)
downloadyuzu-3c710f9b104acf218bce1054bd325f9a2515f8ca.tar
yuzu-3c710f9b104acf218bce1054bd325f9a2515f8ca.tar.gz
yuzu-3c710f9b104acf218bce1054bd325f9a2515f8ca.tar.bz2
yuzu-3c710f9b104acf218bce1054bd325f9a2515f8ca.tar.lz
yuzu-3c710f9b104acf218bce1054bd325f9a2515f8ca.tar.xz
yuzu-3c710f9b104acf218bce1054bd325f9a2515f8ca.tar.zst
yuzu-3c710f9b104acf218bce1054bd325f9a2515f8ca.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/thread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index 9bd0e8e7f..bbfa8befa 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -69,20 +69,19 @@ private:
class Barrier {
public:
- explicit Barrier(size_t count_) : count(count_), waiting(0) {}
+ explicit Barrier(size_t count_) : count(count_), waiting(0), generation(0) {}
/// Blocks until all "count" threads have called Sync()
void Sync() {
std::unique_lock<std::mutex> lk(mutex);
-
- // TODO: broken when next round of Sync()s
- // is entered before all waiting threads return from the notify_all
+ const size_t current_generation = generation;
if (++waiting == count) {
+ generation++;
waiting = 0;
condvar.notify_all();
} else {
- condvar.wait(lk, [&]{ return waiting == 0; });
+ condvar.wait(lk, [this, current_generation]{ return current_generation != generation; });
}
}
@@ -91,6 +90,7 @@ private:
std::mutex mutex;
const size_t count;
size_t waiting;
+ size_t generation; // Incremented once each time the barrier is used
};
void SleepCurrentThread(int ms);