]> git.saurik.com Git - apple/xnu.git/blame - bsd/man/man2/mlock.2
xnu-4903.270.47.tar.gz
[apple/xnu.git] / bsd / man / man2 / mlock.2
CommitLineData
9bccf70c
A
1.\" $NetBSD: mlock.2,v 1.3 1995/06/24 10:42:03 cgd Exp $
2.\"
3.\" Copyright (c) 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.\" 3. All advertising materials mentioning features or use of this software
15.\" must display the following acknowledgement:
16.\" This product includes software developed by the University of
17.\" California, Berkeley and its contributors.
18.\" 4. Neither the name of the University nor the names of its contributors
19.\" may be used to endorse or promote products derived from this software
20.\" without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
33.\"
34.\" @(#)mlock.2 8.2 (Berkeley) 12/11/93
35.\"
36.Dd June 2, 1993
37.Dt MLOCK 2
38.Os
39.Sh NAME
40.Nm mlock ,
41.Nm munlock
42.Nd lock (unlock) physical pages in memory
43.Sh SYNOPSIS
9bccf70c
A
44.Fd #include <sys/mman.h>
45.Ft int
2d21ac55
A
46.Fo mlock
47.Fa "const void *addr"
48.Fa "size_t len"
49.Fc
9bccf70c 50.Ft int
2d21ac55
A
51.Fo munlock
52.Fa "const void *addr"
53.Fa "size_t len"
54.Fc
9bccf70c
A
55.Sh DESCRIPTION
56The
57.Nm mlock
58system call
2d21ac55
A
59locks a set of physical pages into memory.
60The pages are associated with a virtual address range
61that starts at
9bccf70c 62.Fa addr
2d21ac55 63and extends for
9bccf70c
A
64.Fa len
65bytes.
66The
67.Nm munlock
2d21ac55 68call unlocks pages that were previously locked by one or more
9bccf70c
A
69.Nm mlock
70calls.
2d21ac55 71For both calls, the
9bccf70c
A
72.Fa addr
73parameter should be aligned to a multiple of the page size.
74If the
75.Fa len
2d21ac55
A
76parameter is not a multiple of the page size,
77it will be rounded up to be so.
9bccf70c
A
78The entire range must be allocated.
79.Pp
80After an
81.Nm mlock
82call, the indicated pages will cause neither a non-resident page
83nor address-translation fault until they are unlocked.
2d21ac55
A
84They may still cause protection-violation faults or TLB-miss faults
85on architectures with software-managed TLBs.
86The physical pages remain in memory until all locked mappings
87for the pages are removed.
88.Pp
89Multiple processes may have the same physical pages locked
90via their own virtual address mappings.
91Similarly, a single process may have pages multiply-locked
92via different virtual mappings of the same pages or via nested
9bccf70c
A
93.Nm mlock
94calls on the same address range.
95Unlocking is performed explicitly by
96.Nm munlock
97or implicitly by a call to
2d21ac55 98.Nm munmap ,
9bccf70c
A
99which deallocates the unmapped address range.
100Locked mappings are not inherited by the child process after a
101.Xr fork 2 .
102.Pp
2d21ac55
A
103Because physical memory is a potentially scarce resource,
104processes are limited in how much memory they can lock down.
9bccf70c
A
105A single process can
106.Nm mlock
107the minimum of
108a system-wide ``wired pages'' limit and
109the per-process
110.Li RLIMIT_MEMLOCK
111resource limit.
112.Sh RETURN VALUES
2d21ac55
A
113A return value of 0 indicates that the call succeeded
114and all pages in the range have either been locked or unlocked,
115as requested.
116A return value of -1 indicates an error occurred
117and the locked status of all pages in the range remains unchanged.
9bccf70c
A
118In this case, the global location
119.Va errno
120is set to indicate the error.
121.Sh ERRORS
39037602 122.Fn mlock
2d21ac55
A
123and
124.Fn munlock
9bccf70c
A
125will fail if:
126.Bl -tag -width Er
2d21ac55 127.\" ===========
9bccf70c 128.It Bq Er EINVAL
2d21ac55
A
129The address given is not page-aligned or the length is negative.
130.\" ===========
131.It Bq Er ENOMEM
132Part or all of the specified address range
133is not mapped to the process.
134.El
135.Pp
39037602 136.Fn mlock
2d21ac55
A
137will fail if:
138.Bl -tag -width Er
139.\" ===========
9bccf70c
A
140.It Bq Er EAGAIN
141Locking the indicated range would exceed either the system or per-process
142limit for locked memory.
2d21ac55 143.\" ===========
9bccf70c
A
144.It Bq Er ENOMEM
145Some portion of the indicated address range is not allocated.
146There was an error faulting/mapping a page.
147.El
2d21ac55 148.Pp
39037602 149.Fn munlock
9bccf70c
A
150will fail if:
151.Bl -tag -width Er
2d21ac55 152.\" ===========
9bccf70c
A
153.It Bq Er ENOMEM
154Some portion of the indicated address range is not allocated.
155Some portion of the indicated address range is not locked.
156.El
2d21ac55
A
157.Sh LEGACY SYNOPSIS
158.Fd #include <sys/types.h>
159.Fd #include <sys/mman.h>
160.Pp
161The include file
162.In sys/types.h
163is necessary.
164.Pp
165.Ft int
166.br
167.Fo mlock
168.Fa "caddr_t addr"
169.Fa "size_t len"
170.Fc ;
171.Pp
172.Ft int
173.br
174.Fo munlock
175.Fa "caddr_t addr"
176.Fa "size_t len"
177.Fc ;
178.Pp
179The variable type of
180.Fa addr
181has changed.
9bccf70c
A
182.Sh "SEE ALSO"
183.Xr fork 2 ,
184.Xr mincore 2 ,
185.Xr minherit 2 ,
186.Xr mmap 2 ,
187.Xr munmap 2 ,
188.Xr setrlimit 2 ,
2d21ac55
A
189.Xr getpagesize 3 ,
190.Xr compat 5
9bccf70c
A
191.Sh BUGS
192Unlike The Sun implementation, multiple
193.Nm mlock
194calls on the same address range require the corresponding number of
195.Nm munlock
196calls to actually unlock the pages, i.e.
197.Nm mlock
198nests.
199This should be considered a consequence of the implementation
200and not a feature.
201.Pp
202The per-process resource limit is a limit on the amount of virtual
203memory locked, while the system-wide limit is for the number of locked
204physical pages.
205Hence a process with two distinct locked mappings of the same physical page
206counts as 2 pages against the per-process limit and as only a single page
207in the system limit.
208.Sh HISTORY
209The
210.Fn mlock
211and
212.Fn munlock
213functions first appeared in 4.4BSD.