读者写者问题写优先

semaphore rw = 1;//对共享文件的互斥访问
semaphore mutexr = 1;//保证同时仅有一个读进程访问countr
semaphore mutexw = 1;//保证同时仅有一个写进程访问countw
semaphore prior = 1;//保证写进程优先
int countr = 0;//读进程数量
int countw = 0;//写进程数量

writer(){
	while(1){
        p(mutexw);
        if(countw = 0){
            p(prior);
            countw += 1;
        }
        v(mutexw);
        p(rw);
        写文件;
        v(rw);
        p(mutexw);
        countw -= 1;
        if(countw = 0){
            v(prior);
        }
        v(mutexw);
    }
}

reader(){
    while(1){
        p(prior)p(mutexr);
        countr += 1;
        if(countr == 1){
            p(rw);
        }
        v(mutexr);
        v(prior);
        读文件;
        p(mutexr);
        countr -= 1;
        if(countr == 0){
            v(rw);
        }
        v(mutexr);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值