Mercurial > lcfOS
view kernel/schedule.c3 @ 327:61c9df5bffce
Changed emulated board to cortex a8 board
author | Windel Bouwman |
---|---|
date | Sat, 01 Feb 2014 17:21:21 +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); } }