- Remove two more files by moving their tiny contents (one stub, one 2 line function) to mm.c

svn path=/trunk/; revision=35407
This commit is contained in:
Stefan Ginsberg 2008-08-17 12:17:08 +00:00
parent 553ffd969a
commit 10ec954654
4 changed files with 25 additions and 63 deletions

View file

@ -366,6 +366,31 @@ MmCommitPagedPoolAddress(PVOID Address, BOOLEAN Locked)
/* Miscellanea functions: they may fit somewhere else */
/*
* @implemented
*/
BOOLEAN
NTAPI
MmIsRecursiveIoFault (VOID)
{
PETHREAD Thread = PsGetCurrentThread();
return (Thread->DisablePageFaultClustering | Thread->ForwardClusterOnly);
}
/*
* @unimplemented
*/
NTSTATUS
NTAPI
MmMapUserAddressesToPage(IN PVOID BaseAddress,
IN SIZE_T NumberOfBytes,
IN PVOID PageAddress)
{
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
}
/*
* @unimplemented
*/

View file

@ -1,30 +0,0 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/mm/pagfault.c
* PURPOSE: No purpose listed.
*
* PROGRAMMERS: No programmer listed.
*/
#include <ntoskrnl.h>
/*
* @implemented
*/
BOOLEAN
STDCALL
MmIsRecursiveIoFault (
VOID
)
{
PETHREAD Thread = PsGetCurrentThread ();
return ( Thread->DisablePageFaultClustering
| Thread->ForwardClusterOnly
);
}
/* EOF */

View file

@ -1,31 +0,0 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/mm/paging.c
* PURPOSE: Paging file functions
*
* PROGRAMMERS: David Welch (welch@mcmail.com)
*/
/* INCLUDES *****************************************************************/
#include <ntoskrnl.h>
#include <internal/debug.h>
/* FUNCTIONS *****************************************************************/
/*
* @unimplemented
*/
NTSTATUS
STDCALL
MmMapUserAddressesToPage (
IN PVOID BaseAddress,
IN SIZE_T NumberOfBytes,
IN PVOID PageAddress
)
{
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
}

View file

@ -379,8 +379,6 @@
<file>npool.c</file>
<file>pagefile.c</file>
<file>pageop.c</file>
<file>pagfault.c</file>
<file>paging.c</file>
<file>pe.c</file>
<file>physical.c</file>
<file>pool.c</file>