view kernel/src/schedule.c3 @ 381:6df89163e114

Fix section and ldr pseudo instruction
author Windel Bouwman
date Sat, 26 Apr 2014 17:41:56 +0200
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);
    }
}