diff --git a/src/sys/include/ubixos/vitals.h b/src/sys/include/ubixos/vitals.h index 8ad6ddb..bc661d8 100644 --- a/src/sys/include/ubixos/vitals.h +++ b/src/sys/include/ubixos/vitals.h @@ -39,6 +39,7 @@ uInt32 openFiles; uInt32 sysTicks; uInt32 sysUptime; + uInt32 quantum; uInt32 freePages; struct fileSystem *fileSystems; struct mountPoints *mountPoints; @@ -57,6 +58,7 @@ /*** $Log$ - + Revision 1.2 2004/05/21 15:20:00 reddawg + Cleaned up END ***/ diff --git a/src/sys/kernel/vitals.c b/src/sys/kernel/vitals.c index 5f81064..3292299 100644 --- a/src/sys/kernel/vitals.c +++ b/src/sys/kernel/vitals.c @@ -58,6 +58,7 @@ systemVitals->freePages = freePages; systemVitals->sysTicks = 0x0; systemVitals->sysUptime = 0x0; + systemVitals->quantum = 40; systemVitals->fileSystems = 0x0; systemVitals->mountPoints = 0x0; systemVitals->timeStart = 0x0; @@ -74,6 +75,9 @@ /*** $Log$ + Revision 1.4 2004/06/15 12:24:07 reddawg + Cleaned Up + Revision 1.3 2004/05/19 04:07:43 reddawg kmalloc(size,pid) no more it is no kmalloc(size); the way it should of been diff --git a/src/sys/sys/idt.c b/src/sys/sys/idt.c index e29218f..932833c 100644 --- a/src/sys/sys/idt.c +++ b/src/sys/sys/idt.c @@ -410,7 +410,7 @@ " incl 8(%ecx) \n" "next: \n" " movl 4(%ecx),%eax \n" - " movl $40,%ebx \n" + " movl 12(%ecx),%ebx \n" " xor %edx,%edx \n" " div %ebx \n" " test %edx,%edx \n" @@ -466,6 +466,9 @@ /*** $Log$ + Revision 1.11 2004/06/15 12:14:38 reddawg + Cleaned Up + Revision 1.10 2004/06/14 12:20:54 reddawg notes: many bugs repaired and ld works 100% now.