1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
require 'concurrent/thread_safe/util'
module Concurrent
module ThreadSafe
module Util
def self.make_synchronized_on_rbx(klass)
klass.class_eval do
private
def _mon_initialize
@_monitor = Monitor.new unless @_monitor # avoid double initialisation
end
def self.allocate
obj = super
obj.send(:_mon_initialize)
obj
end
end
klass.superclass.instance_methods(false).each do |method|
klass.class_eval <<-RUBY, __FILE__, __LINE__ + 1
def #{method}(*args)
@_monitor.synchronize { super }
end
RUBY
end
end
end
end
end
|