码迷,mamicode.com
首页 > 其他好文 > 详细

读者-写者问题

时间:2021-04-20 15:08:36      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:data   问题   iter   --   type   writer   span   def   class   

 1 typedef int semaphore;
 2 semaphore count_mutex = 1;
 3 semaphore data_mutex = 1;
 4 int count = 0;
 5 
 6 void reader(){
 7     while(TRUE){
 8         down(&count_mutex);
 9         count++;
10         if(count == 1) down(&data_mutex);
11         up(&count_mutex);
12         reader();
13         down(&count_mutex);
14         count--;
15         if(count == 0) up(&data_mutex);
16         up(&count_mutex);
17     }
18 }
19 
20 
21 void writer(){
22     while(TRUE){
23         down(&data_mutex);
24         writer();
25         up(&data_mutex);
26     }
27 }

 

读者-写者问题

标签:data   问题   iter   --   type   writer   span   def   class   

原文地址:https://www.cnblogs.com/liuluswag/p/14673704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!