#pypp 0 // Iris: micro-kernel for a capability-based operating system. // schedule.ccp: Thread scheduling. // Copyright 2009 Bas Wijnen // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #include "kernel.hh" void Thread::run (): if flags & THREAD_FLAG_RUNNING: return flags |= THREAD_FLAG_RUNNING if flags & THREAD_FLAG_WAITING: return schedule_next = first_scheduled if schedule_next: schedule_next->schedule_prev = this first_scheduled = this void Thread::unrun (): if !(flags & THREAD_FLAG_RUNNING): return flags &= ~THREAD_FLAG_RUNNING if !(flags & THREAD_FLAG_WAITING): if current == this: current = schedule_next if schedule_prev: schedule_prev->schedule_next = schedule_next else: first_scheduled = schedule_next if schedule_next: schedule_next->schedule_prev = schedule_prev void Thread::wait (): if flags & THREAD_FLAG_WAITING: return if flags & THREAD_FLAG_RUNNING: unrun () flags |= THREAD_FLAG_WAITING // Try to receive a message from a Receiver immediately. for Receiver *r = receivers; r; r = r->next_owned: if r->try_deliver (): break void Thread::unwait (): if !(flags & THREAD_FLAG_WAITING): return flags &= ~THREAD_FLAG_WAITING if flags & THREAD_FLAG_RUNNING: flags &= ~THREAD_FLAG_RUNNING run () void schedule (): Thread *old = current if current: current = current->schedule_next if !current: current = first_scheduled if !current: current = &idle