logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

vm_page_wire, vm_page_unwire — wire and unwire pages

Authors

       This manual page was written by Chad David <davidc@acns.ab.ca>.

Debian                                            July 13, 2001                                  VM_PAGE_WIRE(9)

Description

       The vm_page_wire() function increments the wire count on a page, and removes it from whatever queue it is
       on.

       The vm_page_unwire() function releases one of the wirings on the page.  When write_count reaches zero the
       page is placed back onto either the active queue (if activate is non-zero) or onto the inactive queue (if
       activate is zero).  If the page is unmanaged (PG_UNMANAGED is set) then the page is left on PQ_NONE.

Name

       vm_page_wire, vm_page_unwire — wire and unwire pages

Synopsis

#include<sys/param.h>#include<vm/vm.h>#include<vm/vm_page.h>voidvm_page_wire(vm_page_tm);

       voidvm_page_unwire(vm_page_tm, intactivate);

See Also