# File lib/watcher.rb, line 90
    def stop
      begin
        @thread.wakeup
      rescue ThreadError => e
        # ignore

      end
      begin
        @thread.kill
      rescue ThreadError => e
        # ignore

      end
    end