Property definitions

pthreads $ ThreadPool :: create_threads
	private fun create_threads do
		while threads.length < nb_threads do
			var t = new PoolThread(queue, mutex, cond)
			t.start
			threads.add t
		end
	end
lib/pthreads/threadpool.nit:31,2--37,4