Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH] include children count, in Threads: field present in /proc/<pid>/status (take-1)
@ 2006-09-29 15:30 girish
  2006-09-29 21:29 ` Ralf Baechle
  0 siblings, 1 reply; 2+ messages in thread
From: girish @ 2006-09-29 15:30 UTC (permalink / raw)
  To: linux-mips; +Cc: girishvg


Signed-off-by: Girish V. Gulawani <girishvg@gmail.com>

--- linux-vanilla/fs/proc/array.c	2006-09-20 12:42:06.000000000 +0900
+++ linux/fs/proc/array.c	2006-09-30 00:16:59.000000000 +0900
@@ -248,6 +248,8 @@ static inline char * task_sig(struct tas
  	int num_threads = 0;
  	unsigned long qsize = 0;
  	unsigned long qlim = 0;
+	int num_children = 0;
+	struct list_head *_p;

  	sigemptyset(&pending);
  	sigemptyset(&shpending);
@@ -268,9 +270,11 @@ static inline char * task_sig(struct tas
  		qlim = p->signal->rlim[RLIMIT_SIGPENDING].rlim_cur;
  		spin_unlock_irq(&p->sighand->siglock);
  	}
+	list_for_each(_p, &p->children)
+		++num_children;
  	read_unlock(&tasklist_lock);

-	buffer += sprintf(buffer, "Threads:\t%d\n", num_threads);
+	buffer += sprintf(buffer, "Threads:\t%d\n", num_threads +  
num_children);
  	buffer += sprintf(buffer, "SigQ:\t%lu/%lu\n", qsize, qlim);

  	/* render them all */

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] include children count, in Threads: field present in /proc/<pid>/status (take-1)
  2006-09-29 15:30 [PATCH] include children count, in Threads: field present in /proc/<pid>/status (take-1) girish
@ 2006-09-29 21:29 ` Ralf Baechle
  0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2006-09-29 21:29 UTC (permalink / raw)
  To: girish; +Cc: linux-mips

This is a patch to generic code; please submit it to
linux-kernel@vger.kernel.org.

  Ralf

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-09-29 21:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-29 15:30 [PATCH] include children count, in Threads: field present in /proc/<pid>/status (take-1) girish
2006-09-29 21:29 ` Ralf Baechle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox