Mercurial > lcfOS
view kernel/schedule.c3 @ 405:f381cea07fec
merge
author | Windel Bouwman |
---|---|
date | Thu, 19 Feb 2015 14:10:52 +0100 |
parents | 1613c9d479bf |
children |
line wrap: on
line source
module scheduler; import process; import arch; var process.process_t *current; function void execute_next() { var process.process_t *old; old = 0; if (old != current) { //execute(current); } }