hle: kernel: KScopedSchedulerLockAndSleep: Various style fixes based on code review feedback.

This commit is contained in:
bunnei 2020-12-05 00:07:44 -08:00
parent b1b4f2337e
commit ed4d1e2ade

View File

@ -16,12 +16,6 @@
namespace Kernel {
class KScopedSchedulerLockAndSleep {
private:
KernelCore& kernel;
Handle& event_handle;
Thread* thread{};
s64 timeout_tick{};
public:
explicit KScopedSchedulerLockAndSleep(KernelCore& kernel, Handle& event_handle, Thread* t,
s64 timeout)
@ -45,6 +39,12 @@ public:
void CancelSleep() {
this->timeout_tick = 0;
}
private:
KernelCore& kernel;
Handle& event_handle;
Thread* thread{};
s64 timeout_tick{};
};
} // namespace Kernel