for_each_process – 它是否迭代线程和进程?

前端之家收集整理的这篇文章主要介绍了for_each_process – 它是否迭代线程和进程?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想迭代内核中的所有任务(线程和进程)并使用for_each_process宏打印tid / pid和name:
#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->pid);

@R_301_323@

您需要以下宏:
/*
 * 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();
原文链接:https://www.f2er.com/c/117844.html

猜你在找的C&C++相关文章