diff --git a/src/sys/init/main.c b/src/sys/init/main.c index 65c1bc4..500b0fb 100644 --- a/src/sys/init/main.c +++ b/src/sys/init/main.c @@ -74,17 +74,6 @@ union descriptorTableUnion *gdt __attribute__ ((packed)); } loadGDT = { (8 * sizeof(union descriptorTableUnion) - 1), ubixGDT }; - -void tmpTaskB() { - int x = 0x0; - while (1) { - if ((x % 1500) == 0x0) - mpiSpam(x,"SPAM TEST"); - x++; - asm("hlt"); - } - } - /***************************************************************************************** Desc: This is the entry point into the os where all of the kernels sub systems are started up. @@ -179,7 +168,6 @@ execThread(idleTask,(uInt32)(kmalloc(0x2000)+0x2000),0x0); execFile("init",0x0,0x0,0x0); //execFile("shell",0x0,0x0,0x0); - execThread(tmpTaskB,(uInt32)(kmalloc(0x2000)+0x2000),0x0); kprintf("Free Pages: [%i]\n",freePages); kprintf("MemoryMap: [0x%X]\n",vmmMemoryMap); kprintf("Starting Os\n"); @@ -238,6 +226,9 @@ /*** $Log$ + Revision 1.29 2004/05/25 15:50:43 reddawg + mpiSpam() test + Revision 1.28 2004/05/23 01:10:35 reddawg Fixes: Started to fix re-entrancy issues many more to look into