mirror of
https://github.com/reactos/reactos.git
synced 2025-07-26 23:23:39 +00:00
[NTOSKRNL]
- Renamed MmIsFileAPagingFile() to MmIsFileObjectAPagingFile() its appropriated name - Added it to internal headers - Implemented FsRtlIsPagingFile() svn path=/trunk/; revision=49712
This commit is contained in:
parent
4f335ab6b0
commit
e69e3b27ee
3 changed files with 7 additions and 4 deletions
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
/*++
|
/*++
|
||||||
* @name FsRtlIsPagingFile
|
* @name FsRtlIsPagingFile
|
||||||
* @implemented NT 4.0
|
* @implemented NT 5.2
|
||||||
*
|
*
|
||||||
* The FsRtlIsPagingFile routine checks if the FileObject is a Paging File.
|
* The FsRtlIsPagingFile routine checks if the FileObject is a Paging File.
|
||||||
*
|
*
|
||||||
|
@ -32,8 +32,7 @@ LOGICAL
|
||||||
NTAPI
|
NTAPI
|
||||||
FsRtlIsPagingFile(IN PFILE_OBJECT FileObject)
|
FsRtlIsPagingFile(IN PFILE_OBJECT FileObject)
|
||||||
{
|
{
|
||||||
KeBugCheck(FILE_SYSTEM);
|
return MmIsFileObjectAPagingFile(FileObject);
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -778,6 +778,10 @@ VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
MmInitPagingFile(VOID);
|
MmInitPagingFile(VOID);
|
||||||
|
|
||||||
|
BOOLEAN
|
||||||
|
NTAPI
|
||||||
|
MmIsFileObjectAPagingFile(PFILE_OBJECT FileObject);
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
MmReadFromSwapPage(
|
MmReadFromSwapPage(
|
||||||
|
|
|
@ -132,7 +132,7 @@ MmBuildMdlFromPages(PMDL Mdl, PPFN_NUMBER Pages)
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
NTAPI
|
NTAPI
|
||||||
MmIsFileAPagingFile(PFILE_OBJECT FileObject)
|
MmIsFileObjectAPagingFile(PFILE_OBJECT FileObject)
|
||||||
{
|
{
|
||||||
ULONG i;
|
ULONG i;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue