diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:51:52 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:51:52 +0000 |
commit | 4ad94864781f48b1a4b77f9cfb934622bf756ba1 (patch) | |
tree | 3900955c1886e6d2570fea7125ee1f01bafe876d /upstream/debian-unstable/man2/pread.2 | |
parent | Adding upstream version 4.22.0. (diff) | |
download | manpages-l10n-4ad94864781f48b1a4b77f9cfb934622bf756ba1.tar.xz manpages-l10n-4ad94864781f48b1a4b77f9cfb934622bf756ba1.zip |
Adding upstream version 4.23.0.upstream/4.23.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'upstream/debian-unstable/man2/pread.2')
-rw-r--r-- | upstream/debian-unstable/man2/pread.2 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/upstream/debian-unstable/man2/pread.2 b/upstream/debian-unstable/man2/pread.2 index 9764e53c..07ffb183 100644 --- a/upstream/debian-unstable/man2/pread.2 +++ b/upstream/debian-unstable/man2/pread.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH pread 2 2023-03-30 "Linux man-pages 6.05.01" +.TH pread 2 2024-05-02 "Linux man-pages 6.8" .SH NAME pread, pwrite \- read from or write to a file descriptor at a given offset .SH LIBRARY @@ -11,18 +11,18 @@ Standard C library .SH SYNOPSIS .nf .B #include <unistd.h> -.PP +.P .BI "ssize_t pread(int " fd ", void " buf [. count "], size_t " count , .BI " off_t " offset ); .BI "ssize_t pwrite(int " fd ", const void " buf [. count "], size_t " count , .BI " off_t " offset ); .fi -.PP +.P .RS -4 Feature Test Macro Requirements for glibc (see .BR feature_test_macros (7)): .RE -.PP +.P .BR pread (), .BR pwrite (): .nf @@ -40,7 +40,7 @@ at offset (from the start of the file) into the buffer starting at .IR buf . The file offset is not changed. -.PP +.P .BR pwrite () writes up to .I count @@ -51,7 +51,7 @@ to the file descriptor at offset .IR offset . The file offset is not changed. -.PP +.P The file referenced by .I fd must be capable of seeking. @@ -63,13 +63,13 @@ returns the number of bytes read and .BR pwrite () returns the number of bytes written. -.PP +.P Note that it is not an error for a successful call to transfer fewer bytes than requested (see .BR read (2) and .BR write (2)). -.PP +.P On error, \-1 is returned and .I errno is set to indicate the error. @@ -92,7 +92,7 @@ or POSIX.1-2008. .SH HISTORY POSIX.1-2001. -.PP +.P Added in Linux 2.1.60; the entries in the i386 system call table were added in Linux 2.1.69. C library support (including emulation using @@ -114,7 +114,7 @@ The glibc and .BR pwrite () wrapper functions transparently deal with the change. -.PP +.P On some 32-bit architectures, the calling signature for these system calls differ, for the reasons described in |