Block until c == 0

Property definitions

actors $ SynchronizedCounter :: wait
	# Block until `c == 0`
	fun wait do
		mutex.lock
		while c != 0 do cond.wait(mutex)
		mutex.unlock
	end
lib/actors/actors.nit:235,2--240,4