*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->FreeBSD man pages -> vm_map_insert (9)              
Title
Content
Arch
Section
 

vm_map_insert(9)

Contents


NAME    [Toc]    [Back]

     vm_map_insert -- insert an object into a map

SYNOPSIS    [Toc]    [Back]

     #include <sys/param.h>
     #include <vm/vm.h>
     #include <vm/vm_map.h>

     int
     vm_map_insert(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
	 vm_offset_t start, vm_offset_t end, vm_prot_t prot, vm_prot_t max,
	 int cow);

DESCRIPTION    [Toc]    [Back]

     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 argment 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    [Toc]    [Back]

     This function implicity creates a new vm_map_entry by calling the internal
 function vm_map_entry_create().  This function may use the Giant lock
     to ensure that only a single thread is present in the function.

RETURN VALUES    [Toc]    [Back]

     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    [Toc]    [Back]

      
      
     vm_map(9)

AUTHORS    [Toc]    [Back]

     This man page was written by Bruce M Simpson <[email protected]>.


				 July 19, 2003
[ Back ]
 Similar pages
Name OS Title
cs_oid_set_insert Tru64 insert an object identifier (OID) into an OID set
shm_open Tru64 Opens a shared memory object, creating the object if necessary (P1003.1b)
pthread_attr_setname_np Tru64 Change the object name attribute in a thread attributes object
pthread_attr_getname_np Tru64 Obtain the object name attribute in a thread attributes object
xlate IRIX the address translation object file section of an ELF object
tt_spec_type_set HP-UX assign an object type value to an object spec
pthread_cond_getname_np Tru64 Obtain the object name from a condition variable object
linsert IRIX Insert elements into a list
dcecp_object HP-UX A dcecp object that manages an object in CDS
pthread_cond_setname_np Tru64 Changes the object name in a condition variable object
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service