view kernel/src/schedule.c3 @ 401:994c00d55fd5

Remove files that are now in ppci
author Windel Bouwman
date Wed, 18 Feb 2015 22:56:42 +0100
parents 6ae782a085e0
children
line wrap: on
line source


module scheduler;

import process;
import arch;

var process.process_t *current;

function void executeNext()
{
    var process.process_t *old;

    if (old != current)
    {
        //execute(current);
    }
}