Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 213 → Rev 214

/shark/trunk/kernel/modules/edf.c
20,11 → 20,11
 
/**
------------
CVS : $Id: edf.c,v 1.6 2003-07-23 09:59:28 giacomo Exp $
CVS : $Id: edf.c,v 1.7 2003-07-24 12:24:51 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.6 $
Last update: $Date: 2003-07-23 09:59:28 $
Revision: $Revision: 1.7 $
Last update: $Date: 2003-07-24 12:24:51 $
------------
 
This file contains the scheduling module EDF (Earliest Deadline First)
388,7 → 388,7
proc_table[p].avail_time = proc_table[p].wcet;
 
jet_update_endcycle(); /* Update the Jet data... */
trc_logevent(TRC_ENDCYCLE,&exec_shadow); /* tracer stuff */
trc_logevent(TRC_ENDCYCLE,&p); /* tracer stuff */
 
break;
 
407,6 → 407,8
if (proc_table[p].status == EDF_IDLE)
proc_table[p].status = EDF_WAIT;
 
trc_logevent(TRC_DISABLE,&p);
 
break;
 
}
/shark/trunk/kernel/modules/hardcbs.c
449,7 → 449,7
}
 
jet_update_endcycle(); /* Update the Jet data... */
trc_logevent(TRC_ENDCYCLE,&exec_shadow); /* tracer stuff */
trc_logevent(TRC_ENDCYCLE,&p); /* tracer stuff */
 
break;
 
456,6 → 456,7
case 1:
 
lev->flag[p] |= HCBS_SLEEP;
trc_logevent(TRC_DISABLE,&p);
 
break;
 
/shark/trunk/kernel/modules/cbs.c
20,11 → 20,11
 
/**
------------
CVS : $Id: cbs.c,v 1.6 2003-07-23 09:59:11 giacomo Exp $
CVS : $Id: cbs.c,v 1.7 2003-07-24 12:24:51 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.6 $
Last update: $Date: 2003-07-23 09:59:11 $
Revision: $Revision: 1.7 $
Last update: $Date: 2003-07-24 12:24:51 $
------------
 
This file contains the aperiodic server CBS (Total Bandwidth Server)
492,7 → 492,7
}
 
jet_update_endcycle(); /* Update the Jet data... */
trc_logevent(TRC_ENDCYCLE,&exec_shadow); /* tracer stuff */
trc_logevent(TRC_ENDCYCLE,&p); /* tracer stuff */
 
break;
 
499,6 → 499,7
case 1:
 
lev->flag[p] |= CBS_SLEEP;
trc_logevent(TRC_DISABLE,&p);
 
break;