1
0
Fork 0
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:
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 * RETURNS: Status
*/ */
{ {
UNIMPLEMENTED; /* This should be implemented once we support network filesystems */
return(STATUS_NOT_IMPLEMENTED); DPRINT("NtFlushVirtualMemory is UNIMPLEMENTED\n");
return(STATUS_SUCCESS);
} }