Kernel: Clang Format

This commit is contained in:
Fernando Sahmkow 2019-10-12 10:28:44 -04:00 committed by FernandoS27
parent c32520ceb7
commit a3524879be
2 changed files with 5 additions and 5 deletions

View file

@ -414,7 +414,7 @@ u64 Scheduler::GetLastContextSwitchTicks() const {
}
void Scheduler::TryDoContextSwitch() {
if (is_context_switch_pending ) {
if (is_context_switch_pending) {
SwitchContext();
}
}

View file

@ -68,8 +68,8 @@ void Thread::WakeAfterDelay(s64 nanoseconds) {
// This function might be called from any thread so we have to be cautious and use the
// thread-safe version of ScheduleEvent.
const s64 cycles = Core::Timing::nsToCycles(std::chrono::nanoseconds{nanoseconds});
Core::System::GetInstance().CoreTiming().ScheduleEvent(cycles, kernel.ThreadWakeupCallbackEventType(),
callback_handle);
Core::System::GetInstance().CoreTiming().ScheduleEvent(
cycles, kernel.ThreadWakeupCallbackEventType(), callback_handle);
}
void Thread::CancelWakeupTimer() {