setsid 函数问题!
小弟刚开始编写一些进程间通讯的程序,有个问题:
setsid()函数有什么作用?产生一个新的进程?有什么用法?谢谢大虾~~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
小弟刚开始编写一些进程间通讯的程序,有个问题:
setsid()函数有什么作用?产生一个新的进程?有什么用法?谢谢大虾~~
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这个问题应该放到C论坛去
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 tty.
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.