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:
Steven Edwards 2005-01-19 20:26:56 +00:00
parent 837f31e111
commit edd0e23bb6

View file

@ -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);
}