diff --git a/src/sys/kernel/sched.c b/src/sys/kernel/sched.c index 9bf90d4..b74f0c8 100644 --- a/src/sys/kernel/sched.c +++ b/src/sys/kernel/sched.c @@ -39,6 +39,7 @@ #include #include #include +#include #include static kTask_t *taskList = 0x0; @@ -122,7 +123,7 @@ if (tmpTask == 0x0) kpanic("Error: schedNewTask() - kmalloc failed trying to initialize a new task struct\n"); - + memset(tmpTask,0x0,sizeof(kTask_t)); /* Filling in tasks attrs */ tmpTask->usedMath = 0x0; tmpTask->id = nextID++; @@ -254,6 +255,9 @@ /*** $Log$ + Revision 1.52 2004/09/11 12:11:11 reddawg + Cleaning up the VFS more changes to follow... + Revision 1.51 2004/09/08 22:16:02 reddawg Fixens