This repository was archived by the owner on Feb 17, 2021. It is now read-only.

Description
Using ruby-fsevent on ruby 1.8.7p174
I'm creating an FSEvent notifier class and then calling start inside a thread ....
Thread.new { my_notifier.start }
My notifier is putting the list of changed directories into a queue to be picked up later by another thread. The problem is that the entire ruby interpreter halts; all other threads are suspended.
Not sure why this is happening. Is this the expected behavior?
TwP