ntdll: Fixme once for NtFlushInstructionCache().

This commit is contained in:
Alexandre Bique 2013-12-13 00:34:10 +01:00 committed by Alexandre Julliard
parent ffccadd335
commit 5af5179313

View File

@ -561,11 +561,15 @@ NTSTATUS WINAPI NtFlushInstructionCache(
IN LPCVOID BaseAddress, IN LPCVOID BaseAddress,
IN SIZE_T Size) IN SIZE_T Size)
{ {
static int once;
if (!once++)
{
#ifdef __i386__ #ifdef __i386__
TRACE("%p %p %ld - no-op on x86\n", ProcessHandle, BaseAddress, Size ); TRACE("%p %p %ld - no-op on x86\n", ProcessHandle, BaseAddress, Size );
#else #else
FIXME("%p %p %ld\n", ProcessHandle, BaseAddress, Size ); FIXME("%p %p %ld\n", ProcessHandle, BaseAddress, Size );
#endif #endif
}
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }