aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2021-08-30 23:42:16 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2021-08-31 01:21:39 +0200
commitbf4f7a78672800b5143ed42adbeb57c18c54fbc4 (patch)
tree285a67168aad683fc9f63d262e697735435bb860
parentdb141dbfcab6a0c4347e50bfd993f37ea66f933b (diff)
downloadman-pages-bf4f7a78672800b5143ed42adbeb57c18c54fbc4.tar.gz
exit_group.2: Remove a confusing reference to _exit(2) in DESCRIPTION
As noted by Jakub: BTW, the exit_group.2 man page could use an update (possibly by merging it into exit.2): it says that the "system call is is equivalent to _exit(2) except that it terminates not only the calling thread, but all threads in the calling process's thread group", which isn't helpful these days. Reported-by: Jakub Wilk <jwilk@jwilk.net> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/exit_group.24
1 files changed, 1 insertions, 3 deletions
diff --git a/man2/exit_group.2 b/man2/exit_group.2
index fc8cbe9efe..a6a6d9b261 100644
--- a/man2/exit_group.2
+++ b/man2/exit_group.2
@@ -39,9 +39,7 @@ glibc provides no wrapper for
necessitating the use of
.BR syscall (2).
.SH DESCRIPTION
-This system call is equivalent to
-.BR _exit (2)
-except that it terminates not only the calling thread, but all threads
+This system call terminates all threads
in the calling process's thread group.
.SH RETURN VALUE
This system call does not return.