# File lib/rb-fsevent/fsevent.rb, line 89
  def stop
    unless @pipe.nil?
      Process.kill('KILL', @pipe.pid) if process_running?(@pipe.pid)
      @pipe.close
    end
  rescue IOError
  ensure
    @running = false
  end