Mercurial > lcfOS
view kernel/schedule.c3 @ 309:68b01c8abf8a
Added start of ir read and write
author | Windel Bouwman |
---|---|
date | Fri, 13 Dec 2013 13:51:02 +0100 |
parents | 2e7f55319858 |
children |
line wrap: on
line source
module scheduler; import process; var process.process_t *current; function void executeNext() { var process.process_t *old; if (old != current) { //execute(current); } }