6 7 8
# File 'lib/revent/synchronize.rb', line 6 def mutex @mutex ||= Mutex.new end
2 3 4
# File 'lib/revent/synchronize.rb', line 2 def synchronize mutex.synchronize { yield self } end