mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 21:07:57 -05:00
kernel: Remove unused variables
Resolves some compiler warnings in the Linux build.
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user