# File lib/more/facets/semaphore.rb, line 31
  def initialize(initvalue = 0)
    @counter = initvalue
    @waiting_list = []
  end