]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/sys/minherit.2
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / sys / minherit.2
1 .\" $FreeBSD$
2 .\"
3 .\" Copyright (c) 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 4. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)minherit.2  8.1 (Berkeley) 6/9/93
31 .\"
32 .Dd October 30, 2007
33 .Dt MINHERIT 2
34 .Os
35 .Sh NAME
36 .Nm minherit
37 .Nd control the inheritance of pages
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In sys/mman.h
42 .Ft int
43 .Fn minherit "void *addr" "size_t len" "int inherit"
44 .Sh DESCRIPTION
45 The
46 .Fn minherit
47 system call
48 changes the specified pages to have the inheritance characteristic
49 .Fa inherit .
50 Not all implementations will guarantee that the inheritance characteristic
51 can be set on a page basis;
52 the granularity of changes may be as large as an entire region.
53 .Fx
54 is capable of adjusting inheritance characteristics on a page basis.
55 Inheritance only effects children created by
56 .Fn fork .
57 It has no effect on
58 .Fn exec .
59 exec'd processes replace their address space entirely.
60 This system call also
61 has no effect on the parent's address space (other than to potentially
62 share the address space with its children).
63 .Pp
64 Inheritance is a rather esoteric feature largely superseded by the
65 .Dv MAP_SHARED
66 feature of
67 .Fn mmap .
68 However, it is possible to use
69 .Fn minherit
70 to share a block of memory between parent and child that has been mapped
71 .Dv MAP_PRIVATE .
72 That is, modifications made by parent or child are shared but
73 the original underlying file is left untouched.
74 .Bl -tag -width ".Dv INHERIT_SHARE"
75 .It Dv INHERIT_SHARE
76 This option causes the address space in question to be shared between
77 parent and child.
78 It has no effect on how the original underlying backing
79 store was mapped.
80 .It Dv INHERIT_NONE
81 This option prevents the address space in question from being inherited
82 at all.
83 The address space will be unmapped in the child.
84 .It Dv INHERIT_COPY
85 This option causes the child to inherit the address space as copy-on-write.
86 This option also has an unfortunate side effect of causing the parent
87 address space to become copy-on-write when the parent forks.
88 If the original mapping was
89 .Dv MAP_SHARED ,
90 it will no longer be shared in the parent
91 after the parent forks and there is no way to get the previous
92 shared-backing-store mapping without unmapping and remapping the address
93 space in the parent.
94 .El
95 .Sh RETURN VALUES
96 .Rv -std minherit
97 .Sh ERRORS
98 The
99 .Fn minherit
100 system call will fail if:
101 .Bl -tag -width Er
102 .It Bq Er EINVAL
103 The virtual address range specified by the
104 .Fa addr
105 and
106 .Fa len
107 arguments is not valid.
108 .It Bq Er EACCES
109 The flags specified by the
110 .Fa inherit
111 argument were not valid for the pages specified
112 by the
113 .Fa addr
114 and
115 .Fa len
116 arguments.
117 .El
118 .Sh SEE ALSO
119 .Xr fork 2 ,
120 .Xr madvise 2 ,
121 .Xr mincore 2 ,
122 .Xr mprotect 2 ,
123 .Xr msync 2 ,
124 .Xr munmap 2 ,
125 .Xr rfork 2
126 .Sh HISTORY
127 The
128 .Fn minherit
129 system call first appeared in
130 .Ox
131 and then in
132 .Fx 2.2 .
133 .Sh BUGS
134 Once you set inheritance to
135 .Dv MAP_PRIVATE
136 or
137 .Dv MAP_SHARED ,
138 there is no way to recover the original copy-on-write semantics
139 short of unmapping and remapping the area.