106 Changes are shared.
107
108
109 MAP_PRIVATE
110 Changes are private.
111
112
113 MAP_FIXED
114 Interpret addr exactly.
115
116
117 MAP_NORESERVE
118 Do not reserve swap space.
119
120
121 MAP_ANON
122 Map anonymous memory.
123
124
125 MAP_ALIGN
126 Interpret addr as required aligment.
127
128
129 MAP_TEXT
130 Map text.
131
132
133 MAP_INITDATA
134 Map initialized data segment.
135
136
137 MAP_32BIT
138 Map to the lower 32 bits of address space.
139
140
141 MAP_FILE
142 Map a regular file. This is the default behavior;
143 specifying this flag is not required. It is provided
144 for compatibility with other systems and should not be
145 included in new code.
146
|
106 Changes are shared.
107
108
109 MAP_PRIVATE
110 Changes are private.
111
112
113 MAP_FIXED
114 Interpret addr exactly.
115
116
117 MAP_NORESERVE
118 Do not reserve swap space.
119
120
121 MAP_ANON
122 Map anonymous memory.
123
124
125 MAP_ALIGN
126 Interpret addr as required alignment.
127
128
129 MAP_TEXT
130 Map text.
131
132
133 MAP_INITDATA
134 Map initialized data segment.
135
136
137 MAP_32BIT
138 Map to the lower 32 bits of address space.
139
140
141 MAP_FILE
142 Map a regular file. This is the default behavior;
143 specifying this flag is not required. It is provided
144 for compatibility with other systems and should not be
145 included in new code.
146
|