由于不知道你程序的功能,所以没有对你的程序逻辑进行分析
#include <stdio.h>
#include<pthread.h>
#include<semaphore.h>
#include<unistd.h>
//----------------以下是修改的部分
sem_t in
sem_t out
sem_t handout
sem_t handin
sem_t goout
//----------------
int counter=0
void * studentIn(void *a)
{
sem_wait(&in)//修改
counter++
printf("%d\n",counter)
if(counter==30)
{
sem_post(&handout)//修改
return NULL
}
sem_post(&in)//修改
return NULL
}
void * fteacherhandout(void *b)
{
sem_wait(&handout)//修改
printf("teacher said:hand out over\n")
sem_post(&handin)//修改
return NULL
}
void * studentout(void *c)
{
sem_wait(&handin)//修改
sem_wait(&out)//修改
counter--
printf("%d\n",counter)
if(counter==0)
{
sem_post(&goout)//修改
return NULL
}
sem_post(&out)//修改
}
void * fteacherout(void *d)
{
sem_wait(&goout)//修改
printf("teacher go out")
return NULL
}
void main()
{
int i=0
//----------------以下是修改的部分
sem_init(&in,0,1)
sem_init(&out,0,1)
sem_init(&handin,0,0)
sem_init(&handout,0,0)
sem_init(&goout,0,0)
//----------------
pthread_t thread1[30],thread2[30],teacher1,teacher2
pthread_attr_t attr
pthread_attr_init(&attr)
for(i=0i<30i++)
{
pthread_create(&thread1[i],&attr,studentIn,NULL)
}
for(i=0i<30i++)
{
pthread_create(&thread2[i],&attr,studentout,NULL)
}
pthread_create(&teacher1,&attr,fteacherhandout,NULL)
pthread_create(&teacher2,&attr,fteacherout,NULL)
return
}
这个问题需要的知识主要包括:
1 多进程间进行通信;
2 使用同步信号量(semaphore)和互斥信号量(mutex)进行数据保护。
参考代码如下,可以参照注释辅助理解:
#include <stdio.h>#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include <semaphore.h>
#define M 10 // 缓冲数目
int in = 0 // 生产者放置产品的位置
int out = 0 // 消费者取产品的位置
int buff[M] = {0} // 缓冲初始化为0, 开始时没有产品
sem_t empty_sem // 同步信号量, 当满了时阻止生产者放产品
sem_t full_sem // 同步信号量, 当没产品时阻止消费者消费
pthread_mutex_t mutex // 互斥信号量, 一次只有一个线程访问缓冲
int product_id = 0 //生产者id
int prochase_id = 0 //消费者id
/* 打印缓冲情况 */
void print()
{
int i
for(i = 0 i < M i++)
printf("%d ", buff[i])
printf("\n")
}
/* 生产者方法 */
void *product()
{
int id = ++product_id
while(1)
{
// 用sleep的数量可以调节生产和消费的速度,便于观察
sleep(1)
//sleep(1)
sem_wait(&empty_sem)
pthread_mutex_lock(&mutex)
in = in % M
printf("product%d in %d. like: \t", id, in)
buff[in] = 1
print()
++in
pthread_mutex_unlock(&mutex)
sem_post(&full_sem)
}
}
/* 消费者方法 */
void *prochase()
{
int id = ++prochase_id
while(1)
{
// 用sleep的数量可以调节生产和消费的速度,便于观察
sleep(1)
//sleep(1)
sem_wait(&full_sem)
pthread_mutex_lock(&mutex)
out = out % M
printf("prochase%d in %d. like: \t", id, out)
buff[out] = 0
print()
++out
pthread_mutex_unlock(&mutex)
sem_post(&empty_sem)
}
}
int main()
{
pthread_t id1[N]
pthread_t id2[N]
int i
int ret[N]
// 初始化同步信号量
int ini1 = sem_init(&empty_sem, 0, M)
int ini2 = sem_init(&full_sem, 0, 0)
if(ini1 && ini2 != 0)
{
printf("sem init failed \n")
exit(1)
}
//初始化互斥信号量
int ini3 = pthread_mutex_init(&mutex, NULL)
if(ini3 != 0)
{
printf("mutex init failed \n")
exit(1)
}
// 创建N个生产者线程
for(i = 0 i < N i++)
{
ret[i] = pthread_create(&id1[i], NULL, product, (void *)(&i))
if(ret[i] != 0)
{
printf("product%d creation failed \n", i)
exit(1)
}
}
//创建N个消费者线程
for(i = 0 i < N i++)
{
ret[i] = pthread_create(&id2[i], NULL, prochase, NULL)
if(ret[i] != 0)
{
printf("prochase%d creation failed \n", i)
exit(1)
}
}
//销毁线程
for(i = 0 i < N i++)
{
pthread_join(id1[i],NULL)
pthread_join(id2[i],NULL)
}
exit(0)
}
在Linux下编译的时候,要在编译命令中加入选项-lpthread以包含多线程支持。比如存储的C文件为demo.c,要生成的可执行文件为demo。可以使用命令:
gcc demo.c -o demo -lpthread
程序中为便于观察,使用了sleep(1)来暂停运行,所以查看输出的时候可以看到,输出是每秒打印一次的。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)