public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.4.9 Make thread group id visible in /proc/<pid>/status
@ 2001-08-20 15:39 Dave McCracken
  2001-08-20 16:19 ` Alan Cox
  0 siblings, 1 reply; 10+ messages in thread
From: Dave McCracken @ 2001-08-20 15:39 UTC (permalink / raw)
  To: Linux Kernel


It would be useful in many contexts to be able to see the thread group id. 
This would make it easier to identify tasks that are part of a 
multi-threaded process, at least for those that are using pthreads.  This 
patch adds a TGid field to the status file.  This will not break ps, since 
ps skips any field in status that it doesn't understand.

Patch is below.

Dave McCracken

======================================================================
Dave McCracken          IBM Linux Base Kernel Team      1-512-838-3059
dmccr@us.ibm.com                                        T/L   678-3059

==========================

--- linux-2.4.9/./fs/proc/array.c	Thu Jul 26 15:42:56 2001
+++ linux-2.4.9-tgid/./fs/proc/array.c	Mon Aug 20 10:05:18 2001
@@ -153,11 +153,12 @@
 		"State:\t%s\n"
 		"Pid:\t%d\n"
 		"PPid:\t%d\n"
+		"TGid:\t%d\n"
 		"TracerPid:\t%d\n"
 		"Uid:\t%d\t%d\t%d\t%d\n"
 		"Gid:\t%d\t%d\t%d\t%d\n",
 		get_task_state(p),
-		p->pid, p->pid ? p->p_opptr->pid : 0, 0,
+		p->pid, p->pid ? p->p_opptr->pid : 0, p->tgid, 0,
 		p->uid, p->euid, p->suid, p->fsuid,
 		p->gid, p->egid, p->sgid, p->fsgid);
 	read_unlock(&tasklist_lock);	


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

end of thread, other threads:[~2001-08-20 20:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-08-20 15:39 [PATCH] 2.4.9 Make thread group id visible in /proc/<pid>/status Dave McCracken
2001-08-20 16:19 ` Alan Cox
2001-08-20 16:26   ` Dave McCracken
2001-08-20 18:50     ` [PATCH] 2.4.9 Make thread group id visible in/proc/<pid>/status george anzinger
2001-08-20 18:59       ` Dave McCracken
2001-08-20 19:52         ` george anzinger
2001-08-20 20:03           ` Dave McCracken
2001-08-20 19:09     ` [PATCH] 2.4.9 Make thread group id visible in /proc/<pid>/status Miquel van Smoorenburg
2001-08-20 19:15       ` Ulrich Drepper
2001-08-20 19:30       ` Dave McCracken

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