Browse Source

Kernel: Clang Format

pull/15/merge
Fernando Sahmkow 6 years ago
committed by FernandoS27
parent
commit
1ec1e81373
  1. 3
      src/core/hle/kernel/scheduler.cpp
  2. 2
      src/core/hle/kernel/thread.h

3
src/core/hle/kernel/scheduler.cpp

@ -281,7 +281,8 @@ void GlobalScheduler::PreemptThreads() {
UnloadThread(winner->GetProcessorID());
}
TransferToCore(winner->GetPriority(), core_id, winner);
current_thread = winner->GetPriority() <= current_thread->GetPriority() ? winner : current_thread;
current_thread =
winner->GetPriority() <= current_thread->GetPriority() ? winner : current_thread;
}
if (current_thread != nullptr && current_thread->GetPriority() > priority) {

2
src/core/hle/kernel/thread.h

@ -468,7 +468,7 @@ private:
u64 total_cpu_time_ticks = 0; ///< Total CPU running ticks.
u64 last_running_ticks = 0; ///< CPU tick when thread was last running
u64 yield_count = 0; ///< Number of innecessaries yields occured.
u64 yield_count = 0; ///< Number of innecessaries yields occured.
s32 processor_id = 0;

Loading…
Cancel
Save