diff options
Diffstat (limited to 'man2/exit_group.2')
-rw-r--r-- | man2/exit_group.2 | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/man2/exit_group.2 b/man2/exit_group.2 deleted file mode 100644 index af66e6a..0000000 --- a/man2/exit_group.2 +++ /dev/null @@ -1,38 +0,0 @@ -.\" Copyright (C) 2004 Andries Brouwer (aeb@cwi.nl) -.\" -.\" SPDX-License-Identifier: Linux-man-pages-copyleft -.\" -.TH exit_group 2 2023-10-31 "Linux man-pages 6.7" -.SH NAME -exit_group \- exit all threads in a process -.SH LIBRARY -Standard C library -.RI ( libc ", " \-lc ) -.SH SYNOPSIS -.nf -.BR "#include <sys/syscall.h>" " /* Definition of " SYS_* " constants */" -.B #include <unistd.h> -.P -.BI "[[noreturn]] void syscall(SYS_exit_group, int " status ); -.fi -.P -.IR Note : -glibc provides no wrapper for -.BR exit_group (), -necessitating the use of -.BR syscall (2). -.SH DESCRIPTION -This system call terminates all threads -in the calling process's thread group. -.SH RETURN VALUE -This system call does not return. -.SH STANDARDS -Linux. -.SH HISTORY -Linux 2.5.35. -.SH NOTES -Since glibc 2.3, this is the system call invoked when the -.BR _exit (2) -wrapper function is called. -.SH SEE ALSO -.BR _exit (2) |