Index: hal/halx86/generic/timer.c =================================================================== --- hal/halx86/generic/timer.c (revision 49154) +++ hal/halx86/generic/timer.c (working copy) @@ -124,8 +124,8 @@ if (HalpClockSetMSRate) { /* Not yet supported */ - UNIMPLEMENTED; - while (TRUE); +// UNIMPLEMENTED; +// while (TRUE); } /* Update the system time -- the kernel will exit this trap */ Index: ntoskrnl/ke/i386/cpu.c =================================================================== --- ntoskrnl/ke/i386/cpu.c (revision 49154) +++ ntoskrnl/ke/i386/cpu.c (working copy) @@ -1367,7 +1367,7 @@ { PFNSAVE_FORMAT FpState; ASSERT(KeGetCurrentIrql() <= DISPATCH_LEVEL); - DPRINT1("%s is not really implemented\n", __FUNCTION__); +// DPRINT1("%s is not really implemented\n", __FUNCTION__); /* check if we are doing software emulation */ if (!KeI386NpxPresent) return STATUS_ILLEGAL_FLOAT_CONTEXT; @@ -1398,7 +1398,7 @@ { PFNSAVE_FORMAT FpState = *((PVOID *) Save); ASSERT(KeGetCurrentThread()->DispatcherHeader.NpxIrql == KeGetCurrentIrql()); - DPRINT1("%s is not really implemented\n", __FUNCTION__); +// DPRINT1("%s is not really implemented\n", __FUNCTION__); #ifdef __GNUC__ asm volatile("fnclex\n\t");