操作系统实验——和尚打水问题

代码在gcc运行

#include <stdio.h>  
#include <pthread.h>  
#include<semaphore.h>
#include<unistd.h>
sem_t empty, full, bucket;
pthread_mutex_t well, jar;
int jar_count = 0;
void *producer(void *arg) {
	while (1) {
		sleep(1);
		sem_wait(&empty);
		sem_wait(&bucket);
		pthread_mutex_lock(&well);
		printf("get water from well.");
		pthread_mutex_unlock(&well);
		pthread_mutex_lock(&jar);
		jar_count++;
		printf("put water in jar.the jar_count is %d\n", jar_count);
		pthread_mutex_unlock(&jar);
		sem_post(&full);
		sem_post(&bucket);
	}
}
void *consumer(void *arg) {
	while (1)
	{
		sleep(2);
		sem_wait(&full);
		sem_wait(&bucket);
		pthread_mutex_lock(&jar);
		jar_count--;
		printf("get water from jar.the jar_count is %d\n", jar_count);
		pthread_mutex_unlock(&jar);
		sem_post(&empty);
		sem_post(&bucket);
	}
}
int main(int argc, char *argv[]) {
	pthread_t thrd_producer, thrd_consumer;
	pthread_mutex_init(&well, NULL);
	pthread_mutex_init(&jar, NULL);
	sem_init(&empty, 0, 10);
	sem_init(&full, 0, 0);
	sem_init(&bucket, 0, 3);
	if (pthread_create(&thrd_producer, NULL, producer, NULL) != 0)
		printf("thread create failed.");
	if (pthread_create(&thrd_consumer, NULL, consumer, NULL) != 0)
		printf("thread create failed.");
	if (pthread_join(thrd_producer, NULL) != 0)
		printf(" wait thread failed.");
	if (pthread_join(thrd_consumer, NULL) != 0)
		printf(" wait thread failed.");
	sem_destroy(&full);
	sem_destroy(&empty);
	sem_destroy(&bucket);
	pthread_mutex_destroy(&well);
	pthread_mutex_destroy(&jar);
	return 0;
}

在这里插入图片描述

  • 0
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值