进程描述符初始化

发布于 2025-01-08 03:04:59 字数 190 浏览 0 评论 0原文

在linux中,当一个进程启动时,它的进程描述符是如何填充的?我想知道这实际上是在哪里完成的。代码的哪一部分执行初始化(优先级初始化及其调度类等等)。文件名和实际发生的行号会对我有帮助。

sched.h中的prio、ststic_prio和normal_prio变量是如何初始化的?到底是内核代码的哪一部分进行了初始化?

提前致谢。

In linux when a process starts, how is it's process descriptor filled? I would like to know where this is actually done. Which part of the code does the initialization (initialization of priority and it's schedule class and all). File name and the line number where it actually happens would help me.

How is prio, ststic_prio and normal_prio variables in sched.h are initialized? And exactly which part of the kernel code does this initialization??

Thanks in advance.

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

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

发布评论

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

评论(2

国粹 2025-01-15 03:05:00

你对“开始”的定义是什么?对于fork,请参阅内核源代码中的kernel/fork.c:copy_process,对于exec,请参阅fs/exec.c: do_execve

What is your definition of "start"? For fork, see kernel/fork.c:copy_process in the kernel source, for exec, see fs/exec.c:do_execve.

把时间冻结 2025-01-15 03:05:00

进程描述符位于 init-scripts 中,

它位于 /etc/init.d 位置,

您可以查看代码,其中包含启动/停止服务的方法,以及启动和停止它们时显示的描述。

Process descriptors are found in init-scripts

its found in the location /etc/init.d

you can go through the code, which contains methods for starting/stopping of the service, and description it shows while starting and stopping them.

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