From 2ed726833f44dce911254fae237b2d9c5ac3f3de Mon Sep 17 00:00:00 2001 From: Robert Dickenson Date: Thu, 26 Dec 2002 17:36:12 +0000 Subject: [PATCH] Changed THREAD_STATE_RUNNABLE to THREAD_STATE_READY however PsDispatchThread() is still inaccessible. svn path=/trunk/; revision=3895 --- reactos/hal/halx86/mp.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/reactos/hal/halx86/mp.c b/reactos/hal/halx86/mp.c index 132bf211c72..aeceeb90272 100644 --- a/reactos/hal/halx86/mp.c +++ b/reactos/hal/halx86/mp.c @@ -1,4 +1,4 @@ -/* $Id: mp.c,v 1.5 2002/12/09 18:42:41 robd Exp $ +/* $Id: mp.c,v 1.6 2002/12/26 17:36:12 robd Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -1393,9 +1393,12 @@ VOID MpsTimerHandler( /* * Call the dispatcher */ - // TODO FIXME - What happened to definition for THREAD_STATE_RUNNABLE ??? // TODO FIXME - What happened to definition for PsDispatchThread ??? - //PsDispatchThread(THREAD_STATE_RUNNABLE); + //PsDispatchThread(THREAD_STATE_READY); + + // KeGetCurrentThread is linked into hal from ntoskrnl, so can + // PsDispatchThread be exported from ntoskrnl also ??? + #if 0 /*