thread同步

1 编译运行附件中的代码,提交运行结果截图,并说明程序功能

功能:

  • 线程同步:体现由于存在互斥以及同步,不能有两个以上的进程同时进行的过程。

原理:

  • 线程同步:即当有一个线程在对内存进行操作时,其他线程都不可以对这个内存地址进行操作,直到该线程完成操作, 其他线程才能对该内存地址进行操作,而其他线程又处于等待状态,实现线程同步的方法有很多,临界区对象就是其中一种。

2 修改代码,把同步资源个数减少为3个,把使用资源的线程增加到 (你的学号%3 + 4)个,编译代码,提交修改后的代码和运行结果截图。

#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
#include <semaphore.h>
#define NUM 3
int queue[NUM];
  sem_t blank_number, product_number;

  void *producer ( void * arg )
  {
static int p = 0;

for ( ;; ) {
	sem_wait( &blank_number );
	queue[p] = rand() % 6;
	printf("Product %d \n", queue[p]);
	p = (p+1) % NUM;
	sleep ( rand() % 5);
	sem_post( &product_number );
}
}
void *consumer ( void * arg )
{

static int c = 0;
for( ;; ) {
	sem_wait( &product_number );
	printf("Consume %d\n", queue[c]);
	c = (c+1) % NUM;
	sleep( rand() % 5 );
	sem_post( &blank_number );
}
}

int main(int argc, char *argv[] )
{
pthread_t pid, cid;

sem_init( &blank_number, 0, NUM );
sem_init( &product_number, 0, 0);
pthread_create( &pid, NULL, producer, NULL);
pthread_create( &cid, NULL, consumer, NULL);
pthread_join( pid, NULL );
pthread_join( cid, NULL );
sem_destroy( &blank_number );
sem_destroy( &product_number );
return 0;
}

posted @ 2022-11-08 22:51  20201224吴卓航  阅读(26)  评论(0)    收藏  举报