public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* if_exist_pid()
@ 2002-07-16 17:19 Richard B. Johnson
  2002-07-16 17:42 ` if_exist_pid() Kasper Dupont
  2002-07-19 14:55 ` if_exist_pid() Hubertus Franke
  0 siblings, 2 replies; 3+ messages in thread
From: Richard B. Johnson @ 2002-07-16 17:19 UTC (permalink / raw)
  To: Linux kernel


Anybody know the 'correct' way of determining if a pid still
exists?  I've been using "kill(pid, 0)" and, if it does not
return an error, it is supposed to exist. This is to release
a user-mode lock (semaphore) if the task that held the lock
crashed. Maybe there is a 'if_exist_pid(pid)' call somewhere?
Sending signal 0 to a pid sometimes returns 0, even if the pid
is long-gone and I don't want to read /proc to look for info.

Cheers,
Dick Johnson

Penguin : Linux version 2.4.18 on an i686 machine (797.90 BogoMips).

                 Windows-2000/Professional isn't.


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

* Re: if_exist_pid()
  2002-07-16 17:19 if_exist_pid() Richard B. Johnson
@ 2002-07-16 17:42 ` Kasper Dupont
  2002-07-19 14:55 ` if_exist_pid() Hubertus Franke
  1 sibling, 0 replies; 3+ messages in thread
From: Kasper Dupont @ 2002-07-16 17:42 UTC (permalink / raw)
  To: root; +Cc: Linux kernel

"Richard B. Johnson" wrote:
> 
> Anybody know the 'correct' way of determining if a pid still
> exists?  I've been using "kill(pid, 0)" and, if it does not
> return an error, it is supposed to exist.

That is correct.

> Sending signal 0 to a pid sometimes returns 0, even if the pid
> is long-gone

Really? That would mean there is a bug in kill(). Of course
you can get return value 0 if the pid has been recycled, but
otherwise it should not happen.

-- 
Kasper Dupont -- der bruger for meget tid på usenet.
For sending spam use mailto:razrep@daimi.au.dk
or mailto:mcxumhvenwblvtl@skrammel.yaboo.dk

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

* Re: if_exist_pid()
  2002-07-16 17:19 if_exist_pid() Richard B. Johnson
  2002-07-16 17:42 ` if_exist_pid() Kasper Dupont
@ 2002-07-19 14:55 ` Hubertus Franke
  1 sibling, 0 replies; 3+ messages in thread
From: Hubertus Franke @ 2002-07-19 14:55 UTC (permalink / raw)
  To: root, Linux kernel

On Tuesday 16 July 2002 01:19 pm, Richard B. Johnson wrote:
> Anybody know the 'correct' way of determining if a pid still
> exists?  I've been using "kill(pid, 0)" and, if it does not
> return an error, it is supposed to exist. This is to release
> a user-mode lock (semaphore) if the task that held the lock
> crashed. Maybe there is a 'if_exist_pid(pid)' call somewhere?
> Sending signal 0 to a pid sometimes returns 0, even if the pid
> is long-gone and I don't want to read /proc to look for info.
>
> Cheers,
> Dick Johnson
>
> Penguin : Linux version 2.4.18 on an i686 machine (797.90 BogoMips).
>
>                  Windows-2000/Professional isn't.
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/


You can take your clues from the get_pid algo and implementation.

The currently correct way to do this is to 
scan all tasks and figure out whether either of pid, gid, tgid .. is using 
your questioned pid number for small number of task this should be
trivial timewise, for large number of task its a different story

Bill Irwin is working on a patch that release pids upon their last usage
and such thing could then be recorded in a bitmap. Checking availability
would simply then mean checking a particular bit.
I have a patch lying around to move pid allocation to a bitmap.


-- 
-- Hubertus Franke  (frankeh@watson.ibm.com)

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

end of thread, other threads:[~2002-07-19 15:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-07-16 17:19 if_exist_pid() Richard B. Johnson
2002-07-16 17:42 ` if_exist_pid() Kasper Dupont
2002-07-19 14:55 ` if_exist_pid() Hubertus Franke

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