1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-02-09 20:04:47 +01:00

Merge pull request from ReinUsesLisp/wait-detached-stasks

common/detached_tasks: Wait for tasks before shutting down
This commit is contained in:
Mai M 2021-06-22 22:20:14 -04:00 committed by GitHub
commit d6b51e5e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,6 +21,8 @@ void DetachedTasks::WaitForAllTasks() {
}
DetachedTasks::~DetachedTasks() {
WaitForAllTasks();
std::unique_lock lock{mutex};
ASSERT(count == 0);
instance = nullptr;