- 论坛徽章:
- 9
|
exit_group(2) - Linux man page
Name
exit_group - exit all threads in a process
Synopsis
#include <linux/unistd.h>
void exit_group(int status);
Description
This system call is equivalent to exit(2) except that it terminates not only the calling thread, but all threads in the calling process's thread group.
Return Value
This system call does not return.
Versions
This call is present since Linux 2.5.35.
Conforming to
This call is Linux-specific.
Notes
Since glibc 2.3, this is the system call invoked when the exit(2) wrapper function is called.
See Also
exit(2)
Referenced By
ptrace(2) |
|