mirror of
https://github.com/reactos/reactos.git
synced 2026-07-06 23:44:40 +08: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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user