MSYNC(2) | System Calls Manual | MSYNC(2) |
msync
—
synchronize a mapped region
Standard C Library (libc, -lc)
#include
<sys/mman.h>
int
msync
(void
*addr, size_t len,
int flags);
The
msync
()
system call writes any modified pages back to the file system and updates
the file modification time. If len is 0, all modified
pages within the region containing addr will be
flushed; if len is non-zero, only those pages
containing addr and len-1
succeeding locations will be examined. The flags
argument may be specified as follows:
MS_ASYNC
MS_SYNC
MS_INVALIDATE
The msync
() function returns the
value 0 if successful; otherwise the value -1 is returned and
the global variable errno is set to indicate the
error.
The msync
() system call will fail if:
EBUSY
]MS_INVALIDATE
is specified.EINVAL
]ENOMEM
]EINVAL
]EIO
]The msync
() system call first appeared in
4.4BSD.
The msync
() system call is usually not
needed since BSD implements a coherent file system
buffer cache. However, it may be used to associate dirty VM pages with file
system buffers and thus cause them to be flushed to physical media sooner
rather than later.
March 18, 2012 | Debian |