aboutsummaryrefslogtreecommitdiffstats
path: root/prelude.rb
blob: 423c9c423ec4031aef1363aa1f137d60aaef1178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Mutex

class Mutex
  class Mutex
    def synchronize
      self.lock
      yield
    ensure
      self.unlock
    end
  end
end