添加条目到task_struct并初始化为默认值

发布于 2024-12-13 23:18:27 字数 194 浏览 2 评论 0原文

我想向进程控制块结构(task_struct)添加一个条目。让我们说一种标记某些进程的方法。我想为除“某些特殊进程”之外的所有进程将此字段初始化为 0,稍后通过调用 sched_setscheduler() 我将为“特殊进程”设置此标志。

有人知道如何为 task_struct 中的成员变量分配默认值吗?

I want to add an entry to process control block structure (task_struct). Let say a way to tag some process. I want to initialize this field to 0 for all the process except "some special processes", later by calling sched_setscheduler() I will set this flag for the "special processes".

Does anybody have an idea how to assign a default value to a member variable in task_struct?

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

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

发布评论

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

评论(1

同展鸳鸯锦 2024-12-20 23:18:27

我假设您正在谈论最新的 Linux 内核,因为实现细节会随着时间而变化。

有两种选择。第一个 - 您可以在 init_task 全局中设置变量的值。在 linux/init_task.h 标头中查看它是如何完成的。第二个选项是向 copy_process 添加代码,您可能无论如何都想这样做,以便正确处理要添加的字段的 fork() 继承。

I'm assuming you are talking about a recent Linux kernel, because implementation detail changes over time.

There are two options. The first - you can set the value of the variable in the init_task global. See how it is done in the linux/init_task.h header. The second option is to add code to copy_process, which you might want to do anyway in order to properly handle the fork() inheritance of the field you are adding.

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