# File lib/daemons/pidfile.rb, line 55
    def PidFile.existing(path)
      new_instance = PidFile.allocate
      
      new_instance.instance_variable_set(:@path, path)
      
      def new_instance.filename
        return @path
      end
      
      return new_instance
    end