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:
parent
cb805f45ae
commit
824b8e4086
3 changed files with 4 additions and 4 deletions
|
@ -148,7 +148,7 @@ void Scheduler::Reschedule() {
|
|||
SwitchContext(next);
|
||||
}
|
||||
|
||||
void Scheduler::AddThread(SharedPtr<Thread> thread, u32 priority) {
|
||||
void Scheduler::AddThread(SharedPtr<Thread> thread) {
|
||||
std::lock_guard lock{scheduler_mutex};
|
||||
|
||||
thread_list.push_back(std::move(thread));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue