内核:如何迭代当前进程的子进程? [英] Kernel: how to iterate the children of the current process?

查看:38
本文介绍了内核:如何迭代当前进程的子进程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 Linux Kernel Development, 3rd ed 中,此代码用于遍历当前进程的子进程.

In Linux Kernel Development, 3rd ed, this code was given for traversing the children of the current process.

list_for_each(list, &current->children) {
    task = list_entry(list, struct task_struct, sibling);
    /* task now points to one of current’s children */
}

这个习语中的兄弟姐妹"看起来不合适.它的目的是什么?

The "sibling" in this idiom looks out of place. What is its purpose?

推荐答案

siblingstruct task_struct 中的 list_head 结构的名称对应于父级的子级列表.

sibling is the name of the list_head structure in struct task_struct that corresponds to the parent's children list.

也就是说,在这个循环中,list 总是指向 struct task_structsibling 成员,或者 children代码>父级成员.

That is, in this loop list always points to a sibling member of a struct task_struct, or the children member of the parent.

这篇关于内核:如何迭代当前进程的子进程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆