diff options
Diffstat (limited to 'upstream/opensuse-tumbleweed/man2/readahead.2')
-rw-r--r-- | upstream/opensuse-tumbleweed/man2/readahead.2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/upstream/opensuse-tumbleweed/man2/readahead.2 b/upstream/opensuse-tumbleweed/man2/readahead.2 index b97f0854..bf2241c1 100644 --- a/upstream/opensuse-tumbleweed/man2/readahead.2 +++ b/upstream/opensuse-tumbleweed/man2/readahead.2 @@ -5,7 +5,7 @@ .\" 2004-05-40 Created by Michael Kerrisk <mtk.manpages@gmail.com> .\" 2004-10-05 aeb, minor correction .\" -.TH readahead 2 2023-07-15 "Linux man-pages 6.05.01" +.TH readahead 2 2024-05-02 "Linux man-pages (unreleased)" .SH NAME readahead \- initiate file readahead into page cache .SH LIBRARY @@ -16,7 +16,7 @@ Standard C library .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #define _FILE_OFFSET_BITS 64 .B #include <fcntl.h> -.PP +.P .BI "ssize_t readahead(int " fd ", off_t " offset ", size_t " count ); .fi .SH DESCRIPTION @@ -25,7 +25,7 @@ initiates readahead on a file so that subsequent reads from that file will be satisfied from the cache, and not block on disk I/O (assuming the readahead was initiated early enough and that other activity on the system did not in the meantime flush pages from the cache). -.PP +.P The .I fd argument is a file descriptor identifying the file which is |