# File lib_core/rucy/rc_d.rb, line 102
    def running?
      begin
        pid = read_pid
        if (@ProcessProbe.proc_alive? pid) then
          return true
        else
          return false
        end
      rescue Errno::ENOENT
        return false
      end

      raise 'internal error'
    end