mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 01:35:43 +00:00
- Temporarily revert my last change. We don't set the SystemThread flag appropriately and it is always zero
svn path=/trunk/; revision=35294
This commit is contained in:
parent
2517d40711
commit
bd974a9e1c
1 changed files with 1 additions and 1 deletions
|
@ -1086,7 +1086,7 @@ PsTerminateSystemThread(IN NTSTATUS ExitStatus)
|
|||
PETHREAD Thread = PsGetCurrentThread();
|
||||
|
||||
/* Make sure this is a system thread */
|
||||
if (!Thread->SystemThread) return STATUS_INVALID_PARAMETER;
|
||||
if (Thread->SystemThread) return STATUS_INVALID_PARAMETER;
|
||||
|
||||
/* Terminate it for real */
|
||||
return PspTerminateThreadByPointer(Thread, ExitStatus, TRUE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue