Mercurial > lcfOS
view kernel/src/schedule.c3 @ 363:396e5cefba13
Removed debuginfo instruction
author | Windel Bouwman |
---|---|
date | Sun, 16 Mar 2014 11:28:47 +0100 |
parents | b4ac28efcdf4 |
children | 6ae782a085e0 |
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); } }