Increment the counter atomically

Property definitions

actors $ SynchronizedCounter :: increment
	# Increment the counter atomically
	fun increment do
		mutex.lock
		c += 1
		mutex.unlock
	end
lib/actors/actors.nit:217,2--222,4