]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/libc/sys/msync.2
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / lib / libc / sys / msync.2
1 .\" Copyright (c) 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)msync.2     8.2 (Berkeley) 6/21/94
29 .\" $FreeBSD$
30 .\"
31 .Dd March 18, 2012
32 .Dt MSYNC 2
33 .Os
34 .Sh NAME
35 .Nm msync
36 .Nd synchronize a mapped region
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In sys/mman.h
41 .Ft int
42 .Fn msync "void *addr" "size_t len" "int flags"
43 .Sh DESCRIPTION
44 The
45 .Fn msync
46 system call
47 writes any modified pages back to the file system and updates
48 the file modification time.
49 If
50 .Fa len
51 is 0, all modified pages within the region containing
52 .Fa addr
53 will be flushed;
54 if
55 .Fa len
56 is non-zero, only those pages containing
57 .Fa addr
58 and
59 .Fa len-1
60 succeeding locations will be examined.
61 The
62 .Fa flags
63 argument may be specified as follows:
64 .Pp
65 .Bl -tag -width ".Dv MS_INVALIDATE" -compact
66 .It Dv MS_ASYNC
67 Return immediately
68 .It Dv MS_SYNC
69 Perform synchronous writes
70 .It Dv MS_INVALIDATE
71 Invalidate all cached data
72 .El
73 .Sh RETURN VALUES
74 .Rv -std msync
75 .Sh ERRORS
76 The
77 .Fn msync
78 system call
79 will fail if:
80 .Bl -tag -width Er
81 .It Bq Er EBUSY
82 Some or all of the pages in the specified region are locked and
83 .Dv MS_INVALIDATE
84 is specified.
85 .It Bq Er EINVAL
86 The
87 .Fa addr
88 argument
89 is not a multiple of the hardware page size.
90 .It Bq Er EINVAL
91 The
92 .Fa len
93 argument
94 is too large or negative.
95 .It Bq Er EINVAL
96 The
97 .Fa flags
98 argument
99 was both MS_ASYNC and MS_INVALIDATE.
100 Only one of these flags is allowed.
101 .It Bq Er EIO
102  An error occurred while writing at least one of the pages in
103 the specified region.
104 .El
105 .Sh SEE ALSO
106 .Xr madvise 2 ,
107 .Xr mincore 2 ,
108 .Xr mlock 2 ,
109 .Xr mprotect 2 ,
110 .Xr munmap 2
111 .Sh HISTORY
112 The
113 .Fn msync
114 system call first appeared in
115 .Bx 4.4 .
116 .Sh BUGS
117 The
118 .Fn msync
119 system call is usually not needed since
120 .Bx
121 implements a coherent file system buffer cache.
122 However, it may be used to associate dirty VM pages with file system
123 buffers and thus cause them to be flushed to physical media sooner
124 rather than later.