Author: fireball Date: Fri Mar 27 15:03:29 2009 New Revision: 40261
URL: http://svn.reactos.org/svn/reactos?rev=40261&view=rev Log: - Fix queue index (actually do what comment in the code says). Spotted by Alex.
Modified: trunk/reactos/ntoskrnl/ke/balmgr.c
Modified: trunk/reactos/ntoskrnl/ke/balmgr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/balmgr.c?rev=40... ============================================================================== --- trunk/reactos/ntoskrnl/ke/balmgr.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ke/balmgr.c [iso-8859-1] Fri Mar 27 15:03:29 2009 @@ -121,7 +121,7 @@ else { /* Set the index we're in now */ - Prcb->QueueIndex = 0; + Prcb->QueueIndex = Index; }
/* Increment the CPU number for next time and normalize to CPU count */