mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Fix queue index (actually do what comment in the code says). Spotted by Alex.
svn path=/trunk/; revision=40261
This commit is contained in:
parent
48301f631c
commit
6971703e7b
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ KiScanReadyQueues(IN PKDPC Dpc,
|
|||
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 */
|
||||
|
|
Loading…
Reference in a new issue