mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
Implement NtFlushInstructionCache()
svn path=/trunk/; revision=12158
This commit is contained in:
parent
8d2782b2fa
commit
77e8ed7c6f
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: sysinfo.c,v 1.61 2004/12/01 23:51:11 ea Exp $
|
/* $Id: sysinfo.c,v 1.62 2004/12/16 22:36:09 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -1513,8 +1513,8 @@ NtFlushInstructionCache (
|
||||||
IN UINT NumberOfBytesToFlush
|
IN UINT NumberOfBytesToFlush
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
__asm__("wbinvd\n");
|
||||||
return(STATUS_NOT_IMPLEMENTED);
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue