文件名称:shiyansan
介绍说明--下载内容均来自于网络,请自行研究使用
实验三、生产者消费者问题
一个大小为3的缓冲区,初始为空
2个生产者
– 随机等待一段时间,往缓冲区添加数据,
– 若缓冲区已满,等待消费者取走数据后再添加
– 重复6次
3个消费者
– 随机等待一段时间,从缓冲区读取数据
– 若缓冲区为空,等待生产者添加数据后再读取
– 重复4次-Third experiment, the producer of consumer issues a buffer of size 3, initially empty two producers- random waiting time, add data to the buffer,- if the buffer is full, then wait for the consumer to get data Add- repeated six times three consumers- random waiting time, read data from the buffer- if the buffer is empty, wait for producers to add data after reading- repeated four times
一个大小为3的缓冲区,初始为空
2个生产者
– 随机等待一段时间,往缓冲区添加数据,
– 若缓冲区已满,等待消费者取走数据后再添加
– 重复6次
3个消费者
– 随机等待一段时间,从缓冲区读取数据
– 若缓冲区为空,等待生产者添加数据后再读取
– 重复4次-Third experiment, the producer of consumer issues a buffer of size 3, initially empty two producers- random waiting time, add data to the buffer,- if the buffer is full, then wait for the consumer to get data Add- repeated six times three consumers- random waiting time, read data from the buffer- if the buffer is empty, wait for producers to add data after reading- repeated four times
(系统自动生成,下载前可以参看下载内容)
下载文件列表
windows.cpp
linux.c