class Process::Daemon::ProcessFile

def self.running(daemon)

Checks whether the daemon is running by checking the saved pid and checking the corresponding process
def self.running(daemon)
	pid = recall(daemon)
	return false if pid == nil
	gpid = Process.getpgid(pid) rescue nil
	return gpid != nil ? true : false
end