|
PMAP_ADDR_HINT(9)
Contents
|
pmap_addr_hint -- get a hint for the best-fit mapping of a VM object
#include <sys/param.h>
#include <vm/vm.h>
#include <vm/pmap.h>
vm_offset_t
pmap_addr_hint(vm_object_t obj, vm_offset_t addr, vm_size_t size);
The pmap_addr_hint() function returns a hint for the best address at
which to map the object obj at address addr of size bytes.
This function is typically called on behalf of mmap().
If the implementation can use the address unchanged, it will simply
return addr.
mmap(2), pmap(9)
This manual page was written by Bruce M Simpson <[email protected]>.
July 21, 2003 [ Back ] |