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 present thread, but all threads in the current thread group.
16
18 This system call does not return.
19
21 This call is present since Linux 2.5.35.
22
24 This call is Linux specific.
25
27 exit(2)
28
29
30
31
32Linux 2.6 2004-10-12 EXIT_GROUP(2)