操作系统实验十:进程同步 软件&硬件方法(DAY 55)

1:实验目的

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

2:实验三

实验三:
在这里插入图片描述

#include<stdio.h>
#include<string.h>
#include<pthread.h>
#include<unistd.h>
#include<stdbool.h>
static int tickets=20;
bool lock=false;

bool test_and_set(){
        if(lock==false){
                lock=true;
                return false;
        }

}

void *seller0(void *arg)
{
      while(tickets>0)
        {
                while(test_and_set());
                sleep(1);
                tickets--;
                printf("seller0: the remaining tickets:%d\n",tickets);
                lock=false;
        }
        sleep(1);
        return NULL;

}
void *seller1(void *arg)
{

        while(tickets>0)
        {
                while(test_and_set);

                sleep(1);
                tickets--;
                printf("seller1:the remaining tickets:%d\n",tickets);
                lock=false;
        }
        sleep(1);
        return NULL;
}
int main()
{

        pthread_t id[2];

        pthread_create(&id[0],NULL,seller0,NULL);
        pthread_create(&id[1],NULL,seller1,NULL);
        for(int i=0;i<2;i++)
        {
                pthread_join(id[i],NULL);
        }
                return 0;

在这里插入图片描述

3:实验四

在这里插入图片描述

#include<stdio.h>
#include<stdbool.h>
#include<pthread.h>
#include<unistd.h>
static int tickets = 20;

bool lock = false;
void swap(bool* a, bool* b)
{
	if (*a == true && *b == false)*a = false, * b = true;

	else if (*a == false && *b == true)*a = true, * b = false;
}

void* seller0() {

	while (tickets > 0)
	{
		bool key1 = true;
		do {
			swap(&key1, &lock);

		} while (key1);
		sleep(1);
		if (tickets > 0)
		{
			tickets--;
			printf("seller0: the remaining tickets:%d\n", tickets);
			lock = false;
		}
		sleep(1);

	}
	return NULL;
}

void* seller1() {
	while (tickets > 0)
	{
		bool key2 = true;
		do {
			swap(&key2, &lock);
		} while (key2);
		sleep(1);
		if (tickets > 0)
		{
			tickets--;
			printf("seller1: the remaining tickets: %d\n", tickets);
			lock = false;
		}
		sleep(1);
	}
	return NULL;
}

int main()
{
	pthread_t id[2];
	pthread_create(&id[0], NULL, seller0, NULL);
	pthread_create(&id[1], NULL, seller1, NULL);
	for (int i = 0; i < 2; i++)
	{
		pthread_join(id[i], NULL);
	}
	return 0;
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

张学恒

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值