Интерактивная система просмотра системных руководств (man-ов)
vm_page_lookup (9)
>> vm_page_lookup (9) ( FreeBSD man: Ядро )
BSD mandoc
NAME
vm_page_lookup
- lookup a vm page
SYNOPSIS
#include <sys/param.h>
#include <vm/vm.h>
#include <vm/vm_page.h>
vm_page_t
vm_page_lookup (vm_object_t object vm_pindex_t pindex);
DESCRIPTION
The
vm_page_lookup ();
function searches for a VM page given its VM object and index.
If the page is not found,
NULL
is returned.
Its arguments are:
- Fa object
-
The VM object to search on.
- Fa pindex
-
The page index to search on.
RETURN VALUES
A
Vt vm_page_t
is returned if successful; otherwise,
NULL
is returned.
AUTHORS
This manual page was written by
An Chad David Aq davidc@acns.ab.ca .
Index
- NAME
-
- SYNOPSIS
-
- DESCRIPTION
-
- RETURN VALUES
-
- AUTHORS
-