[ros-diffs] [fireball] 40261: - Fix queue index (actually do what comment in the code says). Spotted by Alex.

fireball at svn.reactos.org fireball at svn.reactos.org
Fri Mar 27 13:03:30 CET 2009


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=40261&r1=40260&r2=40261&view=diff
==============================================================================
--- 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 */



More information about the Ros-diffs mailing list