NAME pmap_addr_hint - get a hint for the best-fit mapping of a VM object CONTENTS Synopsis Description Implementation Notes Return Values See Also Authors SYNOPSIS .In sys/param.h .In vm/vm.h .In vm/pmap.h vm_offset_t pmap_addr_hint "vm_object_t obj" "vm_offset_t addr" "vm_size_t size" DESCRIPTION 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. IMPLEMENTATION NOTES This function is typically called on behalf of mmap(2). RETURN VALUES If the implementation can use the address unchanged, it will simply return addr. SEE ALSO mmap(2), pmap(9) AUTHORS