ntoskrnl: Avoid repeated FIXME messages in PsLookupProcessByProcessId.
This commit is contained in:
parent
8729575112
commit
01c2af446a
|
@ -1885,7 +1885,8 @@ NTSTATUS WINAPI PsSetLoadImageNotifyRoutine(PLOAD_IMAGE_NOTIFY_ROUTINE routine)
|
|||
*/
|
||||
NTSTATUS WINAPI PsLookupProcessByProcessId(HANDLE processid, PEPROCESS *process)
|
||||
{
|
||||
FIXME("(%p %p) stub\n", processid, process);
|
||||
static int once;
|
||||
if (!once++) FIXME("(%p %p) stub\n", processid, process);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue