Commit fb984990 authored by Anders Jonsson's avatar Anders Jonsson Committed by Alexandre Julliard

ntoskrnl.exe: Stub for PsTerminateSystemThread.

parent fc07a521
......@@ -1205,6 +1205,16 @@ NTSTATUS WINAPI PsSetCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE No
/***********************************************************************
* PsTerminateSystemThread (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS ExitStatus)
{
FIXME( "stub: %u\n", ExitStatus );
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
*/
PVOID WINAPI MmGetSystemRoutineAddress(PUNICODE_STRING SystemRoutineName)
......
......@@ -919,7 +919,7 @@
@ stub PsSetProcessWindowStation
@ stub PsSetThreadHardErrorsAreDisabled
@ stub PsSetThreadWin32Thread
@ stub PsTerminateSystemThread
@ stdcall PsTerminateSystemThread(long)
@ stub PsThreadType
@ stub READ_REGISTER_BUFFER_UCHAR
@ stub READ_REGISTER_BUFFER_ULONG
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment