tcgetsid 与 getsid 函数有何不同?

发布于 2024-12-14 03:37:00 字数 190 浏览 2 评论 0原文

在阅读“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-12-21 03:37:00

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文