view kernel/schedule.c3 @ 322:44f336460c2a

Half of use of burg spec for arm
author Windel Bouwman
date Mon, 27 Jan 2014 19:58:07 +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);
    }
}