kernel/scheduler: Remove unused parameter to AddThread()

This was made unused in b404fcdf14, but
the parameter itself wasn't removed.
This commit is contained in:
Lioncash 2019-03-30 05:26:38 -04:00
parent cb805f45ae
commit 824b8e4086
3 changed files with 4 additions and 4 deletions

View file

@ -38,7 +38,7 @@ public:
u64 GetLastContextSwitchTicks() const;
/// Adds a new thread to the scheduler
void AddThread(SharedPtr<Thread> thread, u32 priority);
void AddThread(SharedPtr<Thread> thread);
/// Removes a thread from the scheduler
void RemoveThread(Thread* thread);