呼び出したプロセスは、 新しいプロセスグループと新しいセッションの唯一のプロセスとなる。
最初は、新しいセッションは制御端末を持たない。セッションが制御端末を獲得する方法については credentials(7) を参照。
A process group leader is a process whose process group ID equals its PID. Disallowing a process group leader from calling setsid() prevents the possibility that a process group leader places itself in a new session while other processes in the process group remain in the original session; such a scenario would break the strict two-level hierarchy of sessions and process groups. In order to be sure that setsid() will succeed, call fork(2) and have the parent _exit(2), while the child (which by definition can't be a process group leader) calls setsid().
セッションが制御端末を持っていて、その端末に対して CLOCAL フラグが設定されておらず、端末のハングアップが起きた場合、 セッションリーダーに SIGHUP シグナルが送られる。
セッションリーダーのプロセスが終了した場合には、その制御端末のフォアグランドのプロセスグループに所属する各プロセスに SIGHUP シグナルが送られる。
[man1]
[man2]
[man3]
[man4]
[man5]
[man6]
[man7]
[man8]
[a]
[b]
[c]
[d]
[e]
[f]
[g]
[h]
[i]
[j]
[k]
[l]
[m]
[n]
[o]
[p]
[q]
[r]
[s]
[t]
[u]
[v]
[w]
[x]
[y]
[z]