vm_page_copy -- copy a page
#include <sys/param.h>
#include <vm/vm.h>
#include <vm/vm_page.h>
void
vm_page_copy(vm_page_t src_m, vm_page_t dst_m);
The vm_page_copy() function copies the contents of src_m into dst_m.
The entire contents of dst_m are marked as valid.
The actual copy is performed by pmap_copy_page().
This manual page was written by Chad David <[email protected]>.
FreeBSD 5.2.1 July 17, 2001 FreeBSD 5.2.1 [ Back ] |