gpt4 book ai didi

c - for_each_process - 它是否也遍历线程和进程?

转载 作者:IT王子 更新时间:2023-10-29 00:33:58 28 4
gpt4 key购买 nike

我想迭代内核中的所有任务(线程和进程)并使用 for_each_process 宏打印 tid/pid 和名称:

#define for_each_process(p) \
for (p = &init_task ; (p = next_task(p)) != &init_task ; )

如何区分线程和进程?

所以我会这样打印:

 if (p->real_parent->pid == NULL)
printk("PROCESS: name: %s pid: %d \n",p->comm,p->pid);
else
printk("THREAD: name: %s tid: %d \n",p->comm,p->pid);

最佳答案

您需要以下宏:

/*
* Careful: do_each_thread/while_each_thread is a double loop so
* 'break' will not work as expected - use goto instead.
*/
#define do_each_thread(g, t) \
for (g = t = &init_task ; (g = t = next_task(g)) != &init_task ; ) do

#define while_each_thread(g, t) \
while ((t = next_thread(t)) != g)

像这样使用它们:

        rcu_read_lock();
do_each_thread(g, t) {
//...
} while_each_thread(g, t);

rcu_read_unlock();

关于c - for_each_process - 它是否也遍历线程和进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14005599/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com