mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
- 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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user