tcgetsid 与 getsid 函数有何不同?
在阅读“Unix 环境中的高级编程”时,在我看来,这两个函数执行完全相同的操作。
它们都向调用进程返回相同的结果。
那么为什么还要设计其中两个呢?
谢谢拉斯曼斯。但是如果一个进程想知道它的会话id,它可以简单地执行getsid(0),在什么情况下进程需要调用tcgetsid(pid)来知道它的会话id呢?
While reading "Advanced Programming in the Unix Environment", it appears to me that those two functions do exactly the same thing.
They both return the same result to the calling process.
So why bother design two of them?
Thanks larsmans. But if a process wants to know its session id, it can simply do getsid(0), under what circumstance does a process need to call tcgetsid(pid) to know its session id?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
tcgetsid
返回终端会话的进程组 ID,由文件描述符表示。getsid
为进程返回相同的值,用其 PID 表示。tcgetsid
returns the process group ID of the session for a terminal, denoted by a file descriptor.getsid
returns the same for a process, denotes by its PID.