diff --git a/src/sys/include/ubixos/sched.h b/src/sys/include/ubixos/sched.h index 2172d97..4b2154e 100644 --- a/src/sys/include/ubixos/sched.h +++ b/src/sys/include/ubixos/sched.h @@ -40,7 +40,7 @@ #include -typedef enum { DEAD=-1,NEW=0,READY=1,RUNNING=2,IDLE=3 } tState; +typedef enum { PLACEHOLDER=-2,DEAD=-1,NEW=0,READY=1,RUNNING=2,IDLE=3 } tState; struct osInfo { struct mountPoints *container; @@ -77,6 +77,7 @@ kTask_t *start; kTask_t *end; struct prioQueue *next; + struct prioQueue *prev; uInt32 prio; } prioQueue_t; @@ -103,6 +104,9 @@ /*** $Log$ + Revision 1.7 2004/06/18 13:01:47 solar + Added nice and timeSlice members to the kTask_t type + Revision 1.6 2004/06/17 02:12:57 reddawg Cleaned Out Dead Code