/proc/PID 目录中的文件是否有自己的 proc_dir_entry 实例?

发布于 2024-10-01 22:23:22 字数 521 浏览 2 评论 0 原文

/proc/PID 目录中的文件(包括 /proc/PID )是否有自己的 proc_dir_entry 实例?

据我所知,/proc 中的每个普通文件(包括 /proc)都有其 proc_dir_entry 实例。 (实例地址存储在proc_inode.pde中。)

在Linux 2.6.11中浏览procfs源代码后,似乎内核没有创建相应的/proc 中每个 pid 目录以及 pid 目录中每个文件的 >proc_dir_entry 实例。
这是真的吗?

如果不是这样,内核源代码中的哪个文件显示内核为 /proc 中的 pid 目录创建 proc_dir_entry 实例。

Do files in /proc/PID directory (including /proc/PID ) have their own proc_dir_entry instance?

As I known, each normal file in /proc including /proc has their proc_dir_entry instance.
(The instance address is stored in proc_inode.pde.)

After surfing the procfs source code in Linux 2.6.11, seems that the kernel doesn't create a corresponding proc_dir_entry instance for each pid directory in /proc and each file in pid directory.
Is this true?

If it's not true, which file in the kernel source code shows that the kernel create proc_dir_entry instance for pid directory in /proc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

柏林苍穹下 2024-10-08 22:23:22

我认为你是对的,看起来 pid 条目的处理方式不同。请参阅fs/proc/base.c

I think you're right, it looks like the pid entries are handled differently. See fs/proc/base.c.

撩动你心 2024-10-08 22:23:22

是的,每个进程都有其 proc_dir_entry,即 /proc/PID/task 目录。

Yes, every process has its proc_dir_entry that is /proc/PID/task directory in common.

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