* [PATCH] posix_fallocate.3: fallocate may be interrupted
@ 2015-10-13 22:00 Jérémie Galarneau
[not found] ` <1444773650-3009-1-git-send-email-jeremie.galarneau-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Jérémie Galarneau @ 2015-10-13 22:00 UTC (permalink / raw)
To: linux-man-u79uwXL29TY76Z2rM5mHXA
Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, Jérémie Galarneau
The glibc implementation of posix_fallocate, which calls
fallocate(), may be interrupted. The fallocate() emulation
also makes use of pread()/pwrite(), which may also be
interrupted.
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
---
man3/posix_fallocate.3 | 3 +++
1 file changed, 3 insertions(+)
diff --git a/man3/posix_fallocate.3 b/man3/posix_fallocate.3
index 6d8d593..d30f681 100644
--- a/man3/posix_fallocate.3
+++ b/man3/posix_fallocate.3
@@ -98,6 +98,9 @@ referred to by
.B ESPIPE
.I fd
refers to a pipe.
+.TP
+.B EINTR
+A signal was caught during execution.
.SH VERSIONS
.BR posix_fallocate ()
is available since glibc 2.1.94.
--
2.6.1
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] posix_fallocate.3: fallocate may be interrupted
[not found] ` <1444773650-3009-1-git-send-email-jeremie.galarneau-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org>
@ 2016-03-08 21:18 ` Jérémie Galarneau
2016-03-08 23:34 ` Michael Kerrisk (man-pages)
1 sibling, 0 replies; 3+ messages in thread
From: Jérémie Galarneau @ 2016-03-08 21:18 UTC (permalink / raw)
To: Michael Kerrisk-manpages, linux-man-u79uwXL29TY76Z2rM5mHXA
Cc: Jérémie Galarneau
Sorry for the bump, but was this forgotten?
Jérémie
On Tue, Oct 13, 2015 at 6:00 PM, Jérémie Galarneau
<jeremie.galarneau-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org> wrote:
> The glibc implementation of posix_fallocate, which calls
> fallocate(), may be interrupted. The fallocate() emulation
> also makes use of pread()/pwrite(), which may also be
> interrupted.
>
> Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
> ---
> man3/posix_fallocate.3 | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/man3/posix_fallocate.3 b/man3/posix_fallocate.3
> index 6d8d593..d30f681 100644
> --- a/man3/posix_fallocate.3
> +++ b/man3/posix_fallocate.3
> @@ -98,6 +98,9 @@ referred to by
> .B ESPIPE
> .I fd
> refers to a pipe.
> +.TP
> +.B EINTR
> +A signal was caught during execution.
> .SH VERSIONS
> .BR posix_fallocate ()
> is available since glibc 2.1.94.
> --
> 2.6.1
>
--
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] posix_fallocate.3: fallocate may be interrupted
[not found] ` <1444773650-3009-1-git-send-email-jeremie.galarneau-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org>
2016-03-08 21:18 ` Jérémie Galarneau
@ 2016-03-08 23:34 ` Michael Kerrisk (man-pages)
1 sibling, 0 replies; 3+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-03-08 23:34 UTC (permalink / raw)
To: Jérémie Galarneau, linux-man-u79uwXL29TY76Z2rM5mHXA
Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
On 10/14/2015 12:00 AM, Jérémie Galarneau wrote:
> The glibc implementation of posix_fallocate, which calls
> fallocate(), may be interrupted. The fallocate() emulation
> also makes use of pread()/pwrite(), which may also be
> interrupted.
Thanks for the ping, Jérémie. And thanks for the patch. Applied.
Cheers,
Michael
> Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
> ---
> man3/posix_fallocate.3 | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/man3/posix_fallocate.3 b/man3/posix_fallocate.3
> index 6d8d593..d30f681 100644
> --- a/man3/posix_fallocate.3
> +++ b/man3/posix_fallocate.3
> @@ -98,6 +98,9 @@ referred to by
> .B ESPIPE
> .I fd
> refers to a pipe.
> +.TP
> +.B EINTR
> +A signal was caught during execution.
> .SH VERSIONS
> .BR posix_fallocate ()
> is available since glibc 2.1.94.
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-03-08 23:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-13 22:00 [PATCH] posix_fallocate.3: fallocate may be interrupted Jérémie Galarneau
[not found] ` <1444773650-3009-1-git-send-email-jeremie.galarneau-vg+e7yoeK/dWk0Htik3J/w@public.gmane.org>
2016-03-08 21:18 ` Jérémie Galarneau
2016-03-08 23:34 ` Michael Kerrisk (man-pages)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).