ntdll: Fixme once for NtFlushInstructionCache().
This commit is contained in:
parent
ffccadd335
commit
5af5179313
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user