ntoskrnl: Avoid repeated FIXME messages in PsLookupProcessByProcessId.

This commit is contained in:
Sebastian Lackner 2015-03-27 08:15:14 +01:00 committed by Alexandre Julliard
parent 8729575112
commit 01c2af446a
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}