列出当前进程中的所有线程?

时间:2012-10-21 21:36:57

标签: multithreading linux-kernel

我正在尝试实现一个允许我获取当前进程的线程数的系统调用。我是Linux内核的新手,所以我对它的理解是有限的。

目前,我正在尝试遍历所有task_struct,并将其线程组负责人的PID与当前线程组负责人的PID进行比较:

// ...
int nthreads = 0;
struct task_struct *task_it;
for_each_process(task_it) {
    if (task_it->group_leader->pid == current->group_leader->pid) {
        nthreads++;
    }
}
// ...

但是,这似乎不起作用(产生一些pthreads的快速测试仍在提供1group_leader对于同一进程中的所有线程都是通用的吗?

2 个答案:

答案 0 :(得分:3)

您的代码的问题在于内核调用PID(pid的{​​{1}}字段)是用户空间调用TID的内容(即,它是task_struct返回的内容每个线程是唯一的)。用户空间调用PID的内容在内核中称为TGID(对于“任务组ID”) - 这就是sys_gettid()系统调用返回的内容。

您不需要实际检查TGID,只需比较sys_getpid()指针即可:

struct task_struct *

顺便说一句,您可以遍历if (task_it->group_leader == current->group_leader) { thread_group所属的current列表(使用while_each_thread()),然后根本不需要任何测试。或者甚至更好,只需使用get_nr_threads(current)

请注意,循环遍历任务列表的所有方法都需要包含在rcu_read_lock(); / rcu_read_unlock();中才能正确。

答案 1 :(得分:1)

这段代码是一个很好的演示。

  

以下C程序会创建流程中所有流程的列表   节点的表,并在一列中显示任何节点的线程数   单一过程。使用此工具,可以识别出   网络守护程序在网络出现问题时随时创建新线程   发生了。登录负责严重的网络问题   问题。

#include "sys/param.h"
#include "sys/pstat.h"

int main ( void )
{

  struct pst_status * psa = NULL;   
  struct pst_status * prc = NULL;    
  struct pst_dynamic  psd;
  long                nproc = 0;      
  long                thsum = 0;       
  long                i;                

  if ( pstat_getdynamic(&psd, sizeof(psd), 1, 0) == -1 )
    (void)perror("pstat_getdynamic failed");

  // Get the number of active processes from pst_dynamic 
  nproc  = psd.psd_activeprocs;  
  psa    = (struct pst_status *)malloc(nproc * sizeof(struct pst_status));

  // Read the info about the active processes into the array 'psa' 
  if ( pstat_getproc(psa, sizeof(struct pst_status), nproc, 0) == -1 )
    (void)perror("pstat_getproc failed");

  (void)printf("\n\n------------------------------------------------------------------------------");
  (void)printf("\n %5s | %5s |%7s| %5s | %s", "PID", "UID", "Threads", "RSS", "Command");
  (void)printf("\n------------------------------------------------------------------------------");

  // Report the process info as required
  prc = (struct pst_status *)psa;       
  for (i=0; i < nproc; i++) 
  {
    (void)printf("\n %5ld | ", prc->pst_pid);
    (void)printf("%5ld | ", prc->pst_uid);
    (void)printf("%5ld | ", prc->pst_nlwps);
    (void)printf("%5ld | ", prc->pst_rssize);
    (void)printf("%s ", prc->pst_cmd);
    thsum += prc->pst_nlwps;
    ++prc;         
  } 

  (void)printf("\n\n*** %ld processes, %ld threads running\n\n", nproc, thsum);
  (void)free(psa);       
  (void)exit(0);
} 

在这里找到: http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801?ciid=060818f70fe0211018f70fe02110275d6e10RCRD

这是使用task_struct的另一个链接: http://tuxthink.blogspot.com/2011/03/using-foreachprocess-in-proc-entry.html