class INotify::Notifier

def run

Other tags:
    See: #process -
def run
  @running.synchronize do
    Thread.current[:INOTIFY_RUN_THREAD] = true
    @stop = false
    process until @stop
  end
ensure
  Thread.current[:INOTIFY_RUN_THREAD] = false
end