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 not
15 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) wrap‐
29 per function is called.
30
32 exit(2)
33
35 This page is part of release 3.53 of the Linux man-pages project. A
36 description of the project, and information about reporting bugs, can
37 be found at http://www.kernel.org/doc/man-pages/.
38
39
40
41Linux 2008-11-27 EXIT_GROUP(2)