exit_group - 退出所有線程在一個進程
內容簡介
#includevoid exit_group(int status);
描述
This system call is equivalent to exit(2) except that it terminates not only the present thread, but all threads in the current thread group.
返回值
這個系統調用無返回。
歷史
This call is present since Linux 2.5.35.
遵循於
這個調用是Linux特有的。
另請參閱
上一篇:
execve()函數 Unix/Linux
下一篇:
_exit()函數 Unix/Linux