mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
- Fix code comments, in addition to 34230.
See issue #3426 for more details. svn path=/trunk/; revision=34231
This commit is contained in:
parent
45d38334d5
commit
a1afb268dd
1 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@ KiInsertQueueApc(IN PKAPC Apc,
|
|||
}
|
||||
else
|
||||
{
|
||||
/* Special APC, find the first Normal APC in the list */
|
||||
/* Special APC, find the last one in the list */
|
||||
ListHead = &ApcState->ApcListHead[ApcMode];
|
||||
NextEntry = ListHead->Blink;
|
||||
while (NextEntry != ListHead)
|
||||
|
@ -148,7 +148,7 @@ KiInsertQueueApc(IN PKAPC Apc,
|
|||
/* Is this a No-Normal APC? If so, break */
|
||||
if (!QueuedApc->NormalRoutine) break;
|
||||
|
||||
/* Move to the next APC in the Queue */
|
||||
/* Move to the previous APC in the Queue */
|
||||
NextEntry = NextEntry->Blink;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue