debian man page for vm_page_protect

Query: vm_page_protect

OS: debian

Section: 9

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

VM_PAGE_PROTECT(9)					   BSD Kernel Developer's Manual					VM_PAGE_PROTECT(9)

NAME
vm_page_protect -- lower a page's protection
SYNOPSIS
#include <sys/param.h> #include <vm/vm.h> #include <vm/vm_page.h> void vm_page_protect(vm_page_t mem, int prot);
DESCRIPTION
The vm_page_protect() function lowers a page's protection. The protection is never raised by this function; therefore, if the page is already at VM_PROT_NONE, the function does nothing. Its arguments are: mem The page whose protection is lowered. prot The protection the page should be reduced to. If VM_PROT_NONE is specified, then the PG_WRITABLE and PG_MAPPED flags are cleared and the pmap_page's protection is set to VM_PROT_NONE. If VM_PROT_READ is specified, then the PG_WRITABLE flag is cleared and the pmap_page's protection is set to VM_PROT_READ. Higher protection requests are ignored.
AUTHORS
This manual page was written by Chad David <davidc@acns.ab.ca>.
BSD
July 14, 2001 BSD
Related Man Pages
mprotect(2) - mojave
vm_page_free_zero(9) - debian
mprotect(2) - freebsd
vm_page_free_zero(9) - freebsd
vm_page_try_to_free(9) - freebsd
Similar Topics in the Unix Linux Community
Installing Dash Shell on OS X Lion
awk or sed - Convert 2 lines to 1 line
Introduction
Find columns in a file based on header and print to new file
How to copy a column of multiple files and paste into new excel file (next to column)?