You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
567 B
C++

// vim: set noet ts=4 sw=4:
#include "scheduler.h"
Scheduler::Scheduler() {}
Thread* Scheduler::getNext() { return nullptr; }
void Scheduler::schedule() {}
void Scheduler::ready(Thread* that) { (void)that; }
void Scheduler::resume(bool ready) { (void)ready; }
void Scheduler::exit() {}
void Scheduler::kill(Thread* that) { (void)that; }
bool Scheduler::isActive(const Thread* that, unsigned int* cpu) {
(void)that;
(void)cpu;
return false;
}
bool Scheduler::isEmpty() const { return false; }
void Scheduler::setIdle(IdleThread* that) { (void)that; }