Mercurial > lcfOS
view kernel/schedule.c3 @ 355:c2ddc8a36f5e
Enabled optimization
author | Windel Bouwman |
---|---|
date | Fri, 14 Mar 2014 10:30:13 +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); } }