summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/synchronization.cpp
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-07-17 05:18:31 +0200
committerGitHub <noreply@github.com>2020-07-17 05:18:31 +0200
commitadbf5ca50bdb49e185bab7ac4cedcab16dbd8f03 (patch)
tree688cef6547204074ccbd664f4b4da292704a941f /src/core/hle/kernel/synchronization.cpp
parentMerge pull request #4358 from lioncash/unused5 (diff)
parentkernel: Remove unused variables (diff)
downloadyuzu-adbf5ca50bdb49e185bab7ac4cedcab16dbd8f03.tar
yuzu-adbf5ca50bdb49e185bab7ac4cedcab16dbd8f03.tar.gz
yuzu-adbf5ca50bdb49e185bab7ac4cedcab16dbd8f03.tar.bz2
yuzu-adbf5ca50bdb49e185bab7ac4cedcab16dbd8f03.tar.lz
yuzu-adbf5ca50bdb49e185bab7ac4cedcab16dbd8f03.tar.xz
yuzu-adbf5ca50bdb49e185bab7ac4cedcab16dbd8f03.tar.zst
yuzu-adbf5ca50bdb49e185bab7ac4cedcab16dbd8f03.zip
Diffstat (limited to 'src/core/hle/kernel/synchronization.cpp')
-rw-r--r--src/core/hle/kernel/synchronization.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/synchronization.cpp b/src/core/hle/kernel/synchronization.cpp
index 851b702a5..8b875d853 100644
--- a/src/core/hle/kernel/synchronization.cpp
+++ b/src/core/hle/kernel/synchronization.cpp
@@ -19,7 +19,6 @@ Synchronization::Synchronization(Core::System& system) : system{system} {}
void Synchronization::SignalObject(SynchronizationObject& obj) const {
auto& kernel = system.Kernel();
SchedulerLock lock(kernel);
- auto& time_manager = kernel.TimeManager();
if (obj.IsSignaled()) {
for (auto thread : obj.GetWaitingThreads()) {
if (thread->GetSchedulingStatus() == ThreadSchedStatus::Paused) {