// vim: set noet ts=4 sw=4: #include "dispatcher.h" Dispatcher::Dispatcher() {} Thread *Dispatcher::active() { return nullptr; } bool Dispatcher::isActive(const Thread *thread, unsigned *cpu) { (void)thread; (void)cpu; return false; } void Dispatcher::go(Thread *first) { (void)first; } void Dispatcher::dispatch(Thread *next) { (void)next; }