diff options
Diffstat (limited to 'src/core/hle/kernel/synchronization.cpp')
| -rw-r--r-- | src/core/hle/kernel/synchronization.cpp | 1 |
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} {} | |||
| 19 | void Synchronization::SignalObject(SynchronizationObject& obj) const { | 19 | void Synchronization::SignalObject(SynchronizationObject& obj) const { |
| 20 | auto& kernel = system.Kernel(); | 20 | auto& kernel = system.Kernel(); |
| 21 | SchedulerLock lock(kernel); | 21 | SchedulerLock lock(kernel); |
| 22 | auto& time_manager = kernel.TimeManager(); | ||
| 23 | if (obj.IsSignaled()) { | 22 | if (obj.IsSignaled()) { |
| 24 | for (auto thread : obj.GetWaitingThreads()) { | 23 | for (auto thread : obj.GetWaitingThreads()) { |
| 25 | if (thread->GetSchedulingStatus() == ThreadSchedStatus::Paused) { | 24 | if (thread->GetSchedulingStatus() == ThreadSchedStatus::Paused) { |