登录 注册
当前位置:主页 > 资源下载 > 11 > 模拟生产者消费者问题的操作系统实验

模拟生产者消费者问题的操作系统实验

  • 更新:2024-09-29 11:58:50
  • 大小:199KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 操作系统
  • 格式:ZIP

资源介绍

操作系统实验模拟生产者消费者问题 PROGRAM NAME: PRODUCER_CONSUMER */ /* This program simulates two processes, producer which */ /* continues to produce message and put it into a buffer */ /* [implemented by PIPE], and consumer which continues to get */ /* message from the buffer and use it. */ /* The program also demonstrates the synchronism between */ /* processes and uses of PIPE.