view kernel/schedule.c3 @ 319:8d07a4254f04

Work on burg
author Windel Bouwman
date Sat, 18 Jan 2014 18:58:43 +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);
    }
}