ntoskrnl.exe: Implement PsTerminateSystemThread().
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
171bf1e2a0
commit
08ba44618d
|
@ -2803,10 +2803,10 @@ NTSTATUS WINAPI PsRemoveCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE
|
|||
/***********************************************************************
|
||||
* PsTerminateSystemThread (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS ExitStatus)
|
||||
NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS status)
|
||||
{
|
||||
FIXME( "stub: %u\n", ExitStatus );
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
TRACE("status %#x.\n", status);
|
||||
ExitThread( status );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue