* [PATCH] clone.2, fork.2: Document ERESTARTNOINTR error code
@ 2016-05-04 8:55 Nikola Forró
[not found] ` <1462352156.3183.1.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Nikola Forró @ 2016-05-04 8:55 UTC (permalink / raw)
To: Michael Kerrisk (man-pages); +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA
Since Linux 2.6.17, clone and fork syscalls return ERESTARTNOINTR
when interrupted by a signal before newly created process is added
to its process group.
This error code can only be seen by ptrace at syscall exit tracing.
The information was obtained from kernel source code:
http://bit.ly/24xdofn
Signed-off-by: Nikola Forró <nforro-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
man2/clone.2 | 4 ++++
man2/fork.2 | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/man2/clone.2 b/man2/clone.2
index 8373700..ab1e58d 100644
--- a/man2/clone.2
+++ b/man2/clone.2
@@ -1013,6 +1013,10 @@ and the call would cause the limit on the number of
nested user namespaces to be exceeded.
See
.BR user_namespaces (7).
+.TP
+.BR ERESTARTNOINTR " (since Linux 2.6.17)"
+System call was interrupted by a signal and will be restarted.
+(This can be seen only during a trace.)
.SH VERSIONS
There is no entry for
.BR clone ()
diff --git a/man2/fork.2 b/man2/fork.2
index 559a47f..3accc8c 100644
--- a/man2/fork.2
+++ b/man2/fork.2
@@ -242,6 +242,10 @@ failed to allocate the necessary kernel structures because memory is tight.
is not supported on this platform (for example,
.\" e.g., arm (optionally), blackfin, c6x, frv, h8300, microblaze, xtensa
hardware without a Memory-Management Unit).
+.TP
+.BR ERESTARTNOINTR " (since Linux 2.6.17)"
+System call was interrupted by a signal and will be restarted.
+(This can be seen only during a trace.)
.SH CONFORMING TO
POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.
.SH NOTES
--
2.4.11
--
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] 2+ messages in thread
* Re: [PATCH] clone.2, fork.2: Document ERESTARTNOINTR error code
[not found] ` <1462352156.3183.1.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2016-05-09 20:32 ` Michael Kerrisk (man-pages)
0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-05-09 20:32 UTC (permalink / raw)
To: nforro-H+wXaHxf7aLQT0dZR+AlfA
Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
linux-man-u79uwXL29TY76Z2rM5mHXA
On 05/04/2016 10:55 AM, Nikola Forró wrote:
> Since Linux 2.6.17, clone and fork syscalls return ERESTARTNOINTR
> when interrupted by a signal before newly created process is added
> to its process group.
> This error code can only be seen by ptrace at syscall exit tracing.
>
> The information was obtained from kernel source code:
> http://bit.ly/24xdofn
Thanks Nikola. I see this relates to kernel commit 4a2c7a7837da.
Patch applied.
Cheers,
Michael
> Signed-off-by: Nikola Forró <nforro-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> ---
> man2/clone.2 | 4 ++++
> man2/fork.2 | 4 ++++
> 2 files changed, 8 insertions(+)
>
> diff --git a/man2/clone.2 b/man2/clone.2
> index 8373700..ab1e58d 100644
> --- a/man2/clone.2
> +++ b/man2/clone.2
> @@ -1013,6 +1013,10 @@ and the call would cause the limit on the number of
> nested user namespaces to be exceeded.
> See
> .BR user_namespaces (7).
> +.TP
> +.BR ERESTARTNOINTR " (since Linux 2.6.17)"
> +System call was interrupted by a signal and will be restarted.
> +(This can be seen only during a trace.)
> .SH VERSIONS
> There is no entry for
> .BR clone ()
> diff --git a/man2/fork.2 b/man2/fork.2
> index 559a47f..3accc8c 100644
> --- a/man2/fork.2
> +++ b/man2/fork.2
> @@ -242,6 +242,10 @@ failed to allocate the necessary kernel structures because memory is tight.
> is not supported on this platform (for example,
> .\" e.g., arm (optionally), blackfin, c6x, frv, h8300, microblaze, xtensa
> hardware without a Memory-Management Unit).
> +.TP
> +.BR ERESTARTNOINTR " (since Linux 2.6.17)"
> +System call was interrupted by a signal and will be restarted.
> +(This can be seen only during a trace.)
> .SH CONFORMING TO
> POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.
> .SH NOTES
>
--
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] 2+ messages in thread
end of thread, other threads:[~2016-05-09 20:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-04 8:55 [PATCH] clone.2, fork.2: Document ERESTARTNOINTR error code Nikola Forró
[not found] ` <1462352156.3183.1.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-05-09 20:32 ` 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).