- 论坛徽章:
- 0
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <semaphore.h>
#include <pthread.h>
void produce();
void consume();
sem_t semfull;
sem_t semempty;
sem_t semmutex;
static int n = 0;
void produce()
{
while(1)
{
sem_wait(&semempty);
sem_wait(&semmutex);
printf("produce %d\n",++n);
sem_post(&semmutex);
sem_post(&semfull);
}
}
void consume()
{
while(1)
{
sem_wait(&semfull);
sem_wait(&semmutex);
printf("consume %d\n",--n);
sem_post(&semmutex);
sem_post(&semempty);
}
}
int main()
{
pthread_t thread1,thread2;
sem_init(&semempty,0,10);
sem_init(&semfull,0,0);
sem_init(&semmutex,0,1);
pthread_create(&thread1,NULL,(void*)produce,NULL);
pthread_create(&thread2,NULL,(void*)consume,NULL);
pthread_join(&thread1,NULL);
pthread_join(&thread2,NULL);
return 0;
}
程序本来想模拟一个简单的生产者消费者问题,程序运行,打印出1以后,就显示段错误,不知道什么原因? |
|