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_map_insert — insert an object into a map

Authors

       This manual page was written by Bruce M Simpson <bms@spc.org>.

Debian                                          January 11, 2013                                VM_MAP_INSERT(9)

Description

       The vm_map_insert() function inserts a mapping for the entire vm_object object into the target map map.

       The offset argument specifies the offset into the object at which to begin mapping.   The  object's  size
       should match that of the specified address range.

       The start and end arguments specify the bounds of the mapped object's window in the address space of map.

       The  cow  argument  specifies  the  flags  which  should  be propagated to the new entry, for example, to
       indicate that this is a copy-on-write mapping.

Implementation Notes

       This  function   implicitly   creates   a   new   vm_map_entry   by   calling   the   internal   function
       vm_map_entry_create().

Name

       vm_map_insert — insert an object into a map

Return Values

       The vm_map_insert() function returns KERN_SUCCESS if the mapping could be made successfully.

       Otherwise,  KERN_INVALID_ADDRESS  will  be  returned  if  the  start  of the range could not be found, or
       KERN_NO_SPACE if the range was found to be part of an existing entry or if it overlaps  the  end  of  the
       map.

See Also

vm_map(9)

Synopsis

#include<sys/param.h>#include<vm/vm.h>#include<vm/vm_map.h>intvm_map_insert(vm_map_tmap,  vm_object_tobject, vm_ooffset_toffset, vm_offset_tstart, vm_offset_tend,
           vm_prot_tprot, vm_prot_tmax, intcow);

See Also