添加条目到task_struct并初始化为默认值
我想向进程控制块结构(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在谈论最新的 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 thelinux/init_task.h
header. The second option is to add code tocopy_process
, which you might want to do anyway in order to properly handle thefork()
inheritance of the field you are adding.