# File lib/listen/adapters/darwin.rb, line 44
      def stop
        @mutex.synchronize do
          return if @stop == true
          super
        end

        @worker.stop
        @worker_thread.join if @worker_thread
        @poll_thread.join if @poll_thread
      end