summaryrefslogtreecommitdiffstats
path: root/src/core/core_timing.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-07-10 06:47:05 +0200
committerGitHub <noreply@github.com>2022-07-10 06:47:05 +0200
commitc765d5be0bf77af65b254db09997d47a9bddd46e (patch)
treeb5b0df7ce3ece41a4f1e661a725074ab3100f6ab /src/core/core_timing.h
parentMerge pull request #8501 from liamwhite/backtrace-again (diff)
parentCore timing: use only one thread. (diff)
downloadyuzu-c765d5be0bf77af65b254db09997d47a9bddd46e.tar
yuzu-c765d5be0bf77af65b254db09997d47a9bddd46e.tar.gz
yuzu-c765d5be0bf77af65b254db09997d47a9bddd46e.tar.bz2
yuzu-c765d5be0bf77af65b254db09997d47a9bddd46e.tar.lz
yuzu-c765d5be0bf77af65b254db09997d47a9bddd46e.tar.xz
yuzu-c765d5be0bf77af65b254db09997d47a9bddd46e.tar.zst
yuzu-c765d5be0bf77af65b254db09997d47a9bddd46e.zip
Diffstat (limited to 'src/core/core_timing.h')
-rw-r--r--src/core/core_timing.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h
index a86553e08..c52bffb3b 100644
--- a/src/core/core_timing.h
+++ b/src/core/core_timing.h
@@ -32,7 +32,6 @@ struct EventType {
TimedCallback callback;
/// A pointer to the name of the event.
const std::string name;
- mutable std::mutex guard;
};
/**
@@ -157,7 +156,6 @@ private:
std::condition_variable wait_pause_cv;
std::condition_variable wait_signal_cv;
mutable std::mutex event_mutex;
- mutable std::mutex sequence_mutex;
std::atomic<bool> paused_state{};
bool is_paused{};