mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
Remove the thread from the list when terminating.
svn path=/trunk/; revision=14763
This commit is contained in:
parent
3ff5700950
commit
ff121124b1
1 changed files with 3 additions and 0 deletions
|
@ -1137,6 +1137,9 @@ KeTerminateThread(IN KPRIORITY Increment)
|
|||
/* Lock the Dispatcher Database and the APC Queue */
|
||||
DPRINT("Terminating\n");
|
||||
OldIrql = KeAcquireDispatcherDatabaseLock();
|
||||
|
||||
/* Remove the thread from the list */
|
||||
RemoveEntryList(&Thread->ThreadListEntry);
|
||||
|
||||
/* Insert into the Reaper List */
|
||||
DPRINT("List: %p\n", PspReaperList);
|
||||
|
|
Loading…
Reference in a new issue