Просмотр исходного кода

Merge pull request #2398 from lioncash/boost

kernel/thread: Remove BoostPriority()
bunnei 7 лет назад
Родитель
Сommit
a7c3275b8b
2 измененных файлов с 0 добавлено и 11 удалено
  1. 0 5
      src/core/hle/kernel/thread.cpp
  2. 0 6
      src/core/hle/kernel/thread.h

+ 0 - 5
src/core/hle/kernel/thread.cpp

@@ -220,11 +220,6 @@ void Thread::SetPriority(u32 priority) {
     UpdatePriority();
 }
 
-void Thread::BoostPriority(u32 priority) {
-    scheduler->SetThreadPriority(this, priority);
-    current_priority = priority;
-}
-
 void Thread::SetWaitSynchronizationResult(ResultCode result) {
     context.cpu_registers[0] = result.raw;
 }

+ 0 - 6
src/core/hle/kernel/thread.h

@@ -136,12 +136,6 @@ public:
      */
     void SetPriority(u32 priority);
 
-    /**
-     * Temporarily boosts the thread's priority until the next time it is scheduled
-     * @param priority The new priority
-     */
-    void BoostPriority(u32 priority);
-
     /// Adds a thread to the list of threads that are waiting for a lock held by this thread.
     void AddMutexWaiter(SharedPtr<Thread> thread);