class Concurrent::ReadWriteLock

def initialize

Create a new `ReadWriteLock` in the unlocked state.
def initialize
  super()
  @Counter   = AtomicFixnum.new(0) # single integer which represents lock state
  @ReadLock  = Synchronization::Lock.new
  @WriteLock = Synchronization::Lock.new
end