Module: Process

Defined in:
lib/thin/daemonizing.rb

Class Method Summary collapse

Class Method Details

.running?(pid) ⇒ Boolean

Returns true the process identied by pid is running.

Returns:

  • (Boolean)


23
24
25
26
27
# File 'lib/thin/daemonizing.rb', line 23

def running?(pid)
  Process.getpgid(pid) != -1
rescue Errno::ESRCH
  false
end