1EXIT_GROUP(2) Linux Programmer's Manual EXIT_GROUP(2)
2
3
4
6 exit_group - exit all threads in a process
7
9 #include <linux/unistd.h>
10
11 void exit_group(int status);
12
14 This system call is equivalent to _exit(2) except that it terminates
15 not only the calling thread, but all threads in the calling process's
16 thread group.
17
19 This system call does not return.
20
22 This call is present since Linux 2.5.35.
23
25 This call is Linux-specific.
26
28 Since glibc 2.3, this is the system call invoked when the _exit(2)
29 wrapper function is called.
30
32 exit(2)
33
35 This page is part of release 5.04 of the Linux man-pages project. A
36 description of the project, information about reporting bugs, and the
37 latest version of this page, can be found at
38 https://www.kernel.org/doc/man-pages/.
39
40
41
42Linux 2008-11-27 EXIT_GROUP(2)