Query: msync
OS: opendarwin
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MSYNC(2) BSD System Calls Manual MSYNC(2)NAMEmsync -- synchronize a mapped regionLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <sys/types.h> #include <sys/mman.h> int msync(void *addr, size_t len, int flags);DESCRIPTIONThe msync() system call writes modified whole pages back to the filesystem and updates the file modification time. Only those pages contain- ing addr and len-1 succeeding locations will be examined. The flags argument may be specified as follows: MS_ASYNC Return immediately MS_SYNC Perform synchronous writes MS_INVALIDATE Invalidate all cached data The MS_ASYNC flag is not permitted to be combined with other flags.RETURN VALUESIf any errors occur, -1 is returned and errno is set to indicate the error. Otherwise, a 0 value is returned.ERRORSmsync() will fail if: [EINVAL] addr is not a multiple of the hardware page size. [EINVAL] len is too large, or less than 1. [EINVAL] flags combined MS_ASYNC with another flag, which is not permitted. [EIO] An I/O error occurred while writing to the file system.SEE ALSOmadvise(2), mincore(2), mprotect(2), munmap(2)HISTORYThe msync() function first appeared in 4.4BSD.BSDJune 21, 1994 BSD
Related Man Pages |
---|
msync(2) - mojave |
msync(3c) - opensolaris |
msync(2) - debian |
msync(2) - suse |
msync(2) - opendarwin |
Similar Topics in the Unix Linux Community |
---|
"Invalid Argumemt" in msync. |