Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 656 → Rev 657

/shark/trunk/kernel/modules/rrsoft.c
20,11 → 20,11
 
/**
------------
CVS : $Id: rrsoft.c,v 1.8 2004-03-10 14:51:44 giacomo Exp $
CVS : $Id: rrsoft.c,v 1.9 2004-05-17 15:03:52 anton Exp $
 
File: $File$
Revision: $Revision: 1.8 $
Last update: $Date: 2004-03-10 14:51:44 $
Revision: $Revision: 1.9 $
Last update: $Date: 2004-05-17 15:03:52 $
------------
 
This file contains the scheduling module RRSOFT (Round Robin)
257,7 → 257,7
proc_table[p].status = RRSOFT_READY;
}
 
static void RRSOFT_public_activate(LEVEL l, PID p)
static void RRSOFT_public_activate(LEVEL l, PID p, struct timespec *t)
{
RRSOFT_level_des *lev = (RRSOFT_level_des *)(level_table[l]);
 
372,7 → 372,7
if (p == NIL)
printk("\nPanic!!! can't create main task...\n");
 
RRSOFT_public_activate(lev,p);
RRSOFT_public_activate(lev,p,NULL);
}