- Revert part of 24108 which was scanning the process's thread ready list and making the threads ready. This shouldn't currently happen on ReactOS but it seems that happens on Fireball's machine and crashes it, so I'm reverting it.

svn path=/trunk/; revision=24147
This commit is contained in:
Alex Ionescu 2006-09-16 20:27:53 +00:00
parent 25e2b01535
commit 0d996fd421

View file

@ -90,6 +90,7 @@ KiAttachProcess(IN PKTHREAD Thread,
if (Process->State == ProcessInMemory)
{
/* Scan the ready list */
#if 0
ListHead = &Process->ReadyListHead;
NextEntry = ListHead->Flink;
while (NextEntry != ListHead)
@ -107,6 +108,7 @@ KiAttachProcess(IN PKTHREAD Thread,
/* Go to the next one */
NextEntry = ListHead->Flink;
}
#endif
/* Release dispatcher lock */
KiReleaseDispatcherLockFromDpcLevel();