view kernel/schedule.c3 @ 318:e84047f29c78

Add burg and yacc initial attempts
author Windel Bouwman
date Tue, 31 Dec 2013 12:38:15 +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);
    }
}