示例#1
0
文件: fifo.cpp 项目: alarouche/cppao
	Producer(int count, queue<int> & consumer) : m_count(count), m_consumer(consumer)
	{
		consumer.wait(this);
	}