# File lib/logging/utils.rb, line 158
  def flock_sh( &block )
    flock LOCK_SH
    block.call
  ensure
    flock LOCK_UN
  end