public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Process id recycling and status of tasks
@ 2009-10-22 13:29 Leonidas .
  2009-10-23  8:13 ` Clemens Ladisch
  0 siblings, 1 reply; 5+ messages in thread
From: Leonidas . @ 2009-10-22 13:29 UTC (permalink / raw)
  To: linux-kernel

Hello,

1. What would be an ideal way to check if a task is alive or dead from
kernel space?
I dont want to check current execution state of the task, rather I
want to check whether task
with this pid is existing currently or not?  I might want to do it
periodically, hence even though
a certain pid might exist, it might have got recycled by the time I
check again, right?

Following is an elementary attempt to achieve the same, but I am not
convinced much, and
I am not even sure I can do this kind of thing without knowing the
context I am executing in.

task_t *p;
read_lock(&tasklist_lock);
for_each_process(p) {
 if ( strcmp (p->comm, $your-daemon-name) == 0)
   break;
}
read_unlock(&tasklist_lock);


2. Basically, what would be parameters of a task which will uniquely
identify a task which ever
existed on my machine. Would it be <name, pid> tuple? Or something
else which uniquely
does this job? Basically differentiate N user space threads in a process.

3. What is the algorithm followed for recycling pids? It does not look
very straight fwd like
pick up the latest freed pid for new task etc. I guess the pid
recycling must be starting after
certain threshold.

Any pointers will be helpful.

-Leo.

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

end of thread, other threads:[~2009-10-26  8:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-22 13:29 Process id recycling and status of tasks Leonidas .
2009-10-23  8:13 ` Clemens Ladisch
2009-10-24 18:07   ` Leonidas .
2009-10-25 10:49     ` Leonidas .
2009-10-26  8:41     ` Clemens Ladisch

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