内核:如何遍历当前进程的孩子?

编程入门 行业动态 更新时间:2024-10-25 05:27:11
本文介绍了内核:如何遍历当前进程的孩子?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

在Linux内核开发,第三版,这code被赋予遍历当前进程的孩子。

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?

推荐答案

兄弟是名称 LIST_HEAD 结构结构的task_struct 对应于父母的孩子名单。

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

也就是说,在这个循环列表总是指向一个兄弟的成员结构的task_struct 或孩子父成员。

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

更多推荐

内核:如何遍历当前进程的孩子?

本文发布于:2023-11-17 11:47:31,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1609910.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:遍历   内核   进程   孩子

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!