Mercurial > lcfOS
view kernel/schedule.c3 @ 323:e9fe6988497c
Used burg for generating expressions
author | Windel Bouwman |
---|---|
date | Thu, 30 Jan 2014 19:03:24 +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); } }