mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +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
|
||||
*/
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return(STATUS_NOT_IMPLEMENTED);
|
||||
/* This should be implemented once we support network filesystems */
|
||||
DPRINT("NtFlushVirtualMemory is UNIMPLEMENTED\n");
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue