Skip Menu |

This queue is for tickets about the Unix-PID CPAN distribution.

Report information
The Basics
Id: 57634
Status: resolved
Priority: 0/
Queue: Unix-PID

People
Owner: Nobody in particular
Requestors: dmuey [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: 0.22



Subject: is_pid_running() could check /proc if available
Stolen from GWADEJ :) sub is_pid_running ... # even if we are superuser ... # If the proc filesystem is available, it's a good test. return ( -r "/proc/$pid" && $pid ) if -e "/proc/$$" && -r "/proc/$$"; ...