vote up 1 vote down star
1

The question title says it all. If there is more than one way, please list them. :) I only know of one, but I'm wondering if there is a cleaner, in-Ruby way.

flag

38% accept rate

4 Answers

vote up 8 vote down check

If it's a process you expect to "own" (e.g. you're using this to validate a pid for a process you control), you can just send sig 0 to it.

>> Process.kill 0, 370
=> 1
>> Process.kill 0, 2
Errno::ESRCH: No such process
    from (irb):5:in `kill'
    from (irb):5
>>
link|flag
Interesting approach! I'll investigate this. – Pistos Nov 28 '08 at 5:19
dang, beat me to it. I saw the "new answers have been posted" thing and my heart sank :( – John T Nov 28 '08 at 5:21
But what's signal 0? A noop? – Pistos Nov 28 '08 at 5:27
From my man page: A value of 0, however, will cause error checking to be performed (with no signal being sent). This can be used to check the validity of pid. – Dustin Nov 28 '08 at 5:35
Dang, was looking at signals man page, etc. Didn't think to look at kill's manpage. :) Thanks, Dustin. – Pistos Nov 28 '08 at 5:37
show 1 more comment
vote up 0 vote down

Parse the output of ps.

link|flag
Note that parsing the output may help tell you if a process has that PID, but it may not be "your" process. – Dustin Nov 28 '08 at 5:21
@Dustin: Right. Good point. – Pistos Nov 28 '08 at 5:24
vote up 1 vote down

You can try using

Process::kill 0, pid

where pid is the pid number, if the pid is running it should return 1.

link|flag
vote up 2 vote down

@John T, @Dustin: Actually, guys, I perused the Process rdocs, and it looks like

Process.getpgid( pid )

is a less violent means of applying the same technique.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.