内容简介
#define _XOPEN_SOURCE 600 #include <fcntl.h> int posix_fadvise(int%uA0fd, off_t%uA0offset, off_t%uA0len, int%uA0advice) |
描述
程序可以使用%uA0posix_fadvise()%uA0公布的意图来访问文件中的数据在未来的特定图案,从而允许内核来执行适当的优化。The%uA0advice%uA0applies to a (not necessarily existent) region starting at%uA0offset%uA0and extending for%uA0len%uA0bytes (or until the end of the file if%uA0len%uA0is 0) within the file referred to by%uA0fd. The advice is not binding it merely constitutes an expectation on behalf of the application.
Permissible values for%uA0advice%uA0include:
标签 | 描述 |
---|---|
POSIX_FADV_NORMAL | |
%uA0 | 表示该应用程序没有建议提供有关其指定的数据访问模式。如果没有意见,给出了一个打开的文件,这是默认的假设。 |
POSIX_FADV_SEQUENTIAL | |
%uA0 | 该应用程序需要访问指定的数据顺序(与以前高的人读低偏移)。 |
POSIX_FADV_RANDOM | |
%uA0 | 将指定的数据将会以随机顺序进行访问。 |
POSIX_FADV_NOREUSE | |
%uA0 | 将指定的数据将只访问一次。 |
POSIX_FADV_WILLNEED | |
%uA0 | 将指定的数据将在不久的将来访问。 |
POSIX_FADV_DONTNEED | |
%uA0 | 指定的数据不会在短期内被访问。 |
返回值
On success, zero is returned. On error, -1 is returned, and%uA0errno%uA0is set appropriately.错误
标签 | 描述 |
---|---|
EBADF | The%uA0fd%uA0argument was not a valid file descriptor. |
EINVAL | An invalid value was specified for%uA0advice. |
ESPIPE | The specified file descriptor refers to a pipe or FIFO. (Linux actually returns EINVAL in this case.) |
注意
posix_fadvise() appeared in kernel 2.5.60.Under Linux,%uA0POSIX_FADV_NORMAL%uA0sets the readahead window to the default size for the backing device%uA0POSIX_FADV_SEQUENTIAL%uA0doubles this size, andPOSIX_FADV_RANDOM%uA0disables file readahead entirely. These changes affect the entire file, not just the specified region (but other open file handles to the same file are unaffected).
POSIX_FADV_WILLNEED%uA0and%uA0POSIX_FADV_NOREUSE%uA0both initiate a non-blocking read of the specified region into the page cache. The amount of data read may be decreased by the kernel depending on VM load. (A few megabytes will usually be fully satisfied, and more is rarely useful.)
POSIX_FADV_DONTNEED%uA0attempts to free cached pages associated with the specified region. This is useful, for example, while streaming large files. A program may periodically request the kernel to free cached data that has already been used, so that more useful cached pages are not discarded instead.
Pages that have not yet been written out will be unaffected, so if the application wishes to guarantee that pages will be released, it should call%uA0fsync() or%uA0fdatasync() first.