mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 06:58:10 +00:00
make NtFlushVirtualMemory return STATUS_SUCCESS rather than hanging as being UNIMPLEMENTED. Added a DPRINT to warn that its a stub
svn path=/trunk/; revision=13137
This commit is contained in:
parent
837f31e111
commit
edd0e23bb6
1 changed files with 3 additions and 2 deletions
|
@ -49,8 +49,9 @@ NtFlushVirtualMemory(IN HANDLE ProcessHandle,
|
||||||
* RETURNS: Status
|
* RETURNS: Status
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
/* This should be implemented once we support network filesystems */
|
||||||
return(STATUS_NOT_IMPLEMENTED);
|
DPRINT("NtFlushVirtualMemory is UNIMPLEMENTED\n");
|
||||||
|
return(STATUS_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue