This one is frequently flooding the console while testing various dotnet core programs.
From: Louis Lenders xerox.xerox2000x@gmail.com
This one is frequently flooding the console while testing various dotnet core programs. --- dlls/ntdll/rtl.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dlls/ntdll/rtl.c b/dlls/ntdll/rtl.c index 234d51a6a20..b63829aff12 100644 --- a/dlls/ntdll/rtl.c +++ b/dlls/ntdll/rtl.c @@ -1391,7 +1391,11 @@ BOOL WINAPI RtlSetCurrentTransaction(HANDLE new_transaction) */ void WINAPI RtlGetCurrentProcessorNumberEx(PROCESSOR_NUMBER *processor) { - FIXME("(%p) :semi-stub\n", processor); + static int warn_once; + + if (!warn_once++) + FIXME("(%p) :semi-stub\n", processor); + processor->Group = 0; processor->Number = NtGetCurrentProcessorNumber(); processor->Reserved = 0;