1 .\" Copyright (C) 2004 Andries Brouwer (aeb@cwi.nl)
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .TH EXIT_GROUP 2 2008-11-27 "Linux" "Linux Programmer's Manual"
27 exit_group \- exit all threads in a process
30 .B #include <linux/unistd.h>
32 .BI "void exit_group(int " status );
35 This system call is equivalent to
37 except that it terminates not only the calling thread, but all threads
38 in the calling process's thread group.
40 This system call does not return.
42 This call is present since Linux 2.5.35.
44 This call is Linux-specific.
46 Since glibc 2.3, this is the system call invoked when the
48 wrapper function is called.