Why fork() before setsid()

前端 未结 3 722
旧巷少年郎
旧巷少年郎 2021-01-29 21:48

Why fork() before setsid() to daemonize a process?

Basically, if I want to detach a process from its controlling terminal and make it a process

3条回答
  •  误落风尘
    2021-01-29 22:40

    man 2 setsid, you will get the following description:

    setsid() creates a new session if the calling process is not a process group leader. The calling process is the leader of the new session, the process group leader of the new process group, and has no controlling terminal. The process group ID and session ID of the calling process are set to the PID of the calling process. The calling process will be the only process in this new process group and in this new session.

    If a process group leader is allowed to call setsid(), create a new session and a new process group(with the same process group id), it will lead to a process group id conflict.

提交回复
热议问题