ReactOS PowerPC WIP. This will be edited and merged, and likely shrunk.
[reactos.git] / reactos / ntoskrnl / ps / idle.c
index 2b1d39c..fe43e7b 100644 (file)
@@ -45,7 +45,11 @@ PsIdleThreadMain(PVOID Context)
 
        NtYieldExecution();
 
+#ifdef _M_IX86
        Ke386HaltProcessor();
+#elif defined(_M_PPC)
+       for(;;);
+#endif
      }
 }