文章
86
粉丝
98
获赞
1
访问
31.5k
Semaphore buffer=N;
Semaphore mutex=1;
Semaphore odd=0;
Semaphore even=0;
P1(){
int x = produce();
P(buffer);
P(mutex);
put(x);
V(mutex);
if (x%2==0){
V(even);
}
else {
V(odd);
登录后发布评论
暂无评论,来抢沙发