Browse Source

Kernel: Clang Format

nce_cpp
Fernando Sahmkow 6 years ago
committed by FernandoS27
parent
commit
5acd086b18
  1. 4
      src/core/hle/kernel/thread.cpp

4
src/core/hle/kernel/thread.cpp

@ -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() {

Loading…
Cancel
Save