Mutex used to synchronize access to self

It is used by the implementation on each protected methods. It can also be used externally to ensure that no other Thread modify this object.

Property definitions

pthreads $ ConcurrentCollection :: mutex
	# `Mutex` used to synchronize access to `self`
	#
	# It is used by the implementation on each protected methods. It can also
	# be used externally to ensure that no other `Thread` modify this object.
	var mutex = new Mutex
lib/pthreads/concurrent_collections.nit:78,2--82,22