생산자 소비자 - c 언어 실현
2437 단어 데이터 구조
#include
#include
#include
#include
#include
#include
pthread_mutex_t mtx;
pthread_cond_t cond_add;
pthread_cond_t cond_del;
int pool;
int size;
#define THREADS 3
pthread_t tid_pd[THREADS];
pthread_t tid_cs[THREADS];
void producer(void *id)
{
int threadid = *((int *)id);
printf("producer threadid %d started.
", threadid);
while(1) {
retry:
pthread_mutex_lock(&mtx);
if(pool >= size) {
pthread_cond_wait(&cond_del, &mtx);
pthread_mutex_unlock(&mtx);
goto retry;
}
pool ++;
printf("p%d add a good, pool is %d.
", threadid, pool);
pthread_cond_signal(&cond_add);
pthread_mutex_unlock(&mtx);
srand((unsigned)time(NULL));
}
return;
}
void consumer(void *id)
{
int threadid = *((int *)id);
printf("consumer threadid %d started.
", threadid);
while(1) {
retry:
pthread_mutex_lock(&mtx);
if(pool <= 0) {
pthread_cond_wait(&cond_add, &mtx);
pthread_mutex_unlock(&mtx);
goto retry;
}
pool --;
printf("c%d del a good, pool is %d.
", threadid, pool);
pthread_cond_signal(&cond_del);
pthread_mutex_unlock(&mtx);
}
return;
}
int main(int argc, char const *argv[])
{
/* code */
pthread_mutex_init(&mtx, NULL);
pthread_cond_init(&cond_add, NULL);
pthread_cond_init(&cond_del, NULL);
pool = 0;
size = 10;
int i;
for(i = 0; i < THREADS; i ++) {
if(pthread_create(&tid_pd[i], NULL, (void *)producer, (void *)(&i)) != 0) {
printf("create producer thread %d error!
", i);
return 0;
}
usleep(100000);
}
for(i = 0; i < THREADS; i ++) {
if(pthread_create(&tid_cs[i], NULL, (void *)consumer, (void *)(&i)) != 0) {
printf("create consumer thread %d error!
", i);
return 0;
}
usleep(100000);
}
for(i = 0; i < THREADS; i ++) {
if(pthread_join(tid_pd[i], NULL) != 0) {
printf("join producer thread %d error!
", i);
return 0;
}
}
for(i = 0; i < THREADS; i ++) {
if(pthread_join(tid_cs[i], NULL) != 0) {
printf("join consumer thread %d error!
", i);
return 0;
}
}
pthread_mutex_destroy(&mtx);
pthread_cond_destroy(&cond_add);
pthread_cond_destroy(&cond_del);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.