|
VM_PAGE_CACHE(9)
Contents
|
vm_page_cache -- move a page onto the cache queue
#include <sys/param.h>
#include <vm/vm.h>
#include <vm/vm_page.h>
void
vm_page_cache(vm_page_t m);
The vm_page_cache() function moves a page onto the cache queue, and
removes any protection that may be set on the page. If the page is busy,
wired or unmanaged then the move to the cache queue will fail. If the
page is dirty the system will panic.
This manual page was written by Chad David <[email protected]>.
FreeBSD 5.2.1 July 24, 2001 FreeBSD 5.2.1 [ Back ] |