# File lib/listen/adapters/polling.rb, line 26
      def start(blocking = true)
        @mutex.synchronize do
          return if @stop == false
          super
        end

        @poll_thread = Thread.new { poll }
        @poll_thread.join if blocking
      end