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
1 changed files with 6 additions and 2 deletions

View File

@ -561,11 +561,15 @@ NTSTATUS WINAPI NtFlushInstructionCache(
IN LPCVOID BaseAddress,
IN SIZE_T Size)
{
static int once;
if (!once++)
{
#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
FIXME("%p %p %ld\n", ProcessHandle, BaseAddress, Size );
FIXME("%p %p %ld\n", ProcessHandle, BaseAddress, Size );
#endif
}
return STATUS_SUCCESS;
}