码迷,mamicode.com
首页 > 编程语言 > 详细

linux中的线程同步:生产者、消费者问题

时间:2014-06-05 16:57:05      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
#include <stdio.h>
#include <semaphore.h>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
#define BUFFER_COUNT 5

int Buffer[BUFFER_COUNT]; //指针数组
int front = 0;
int tail = 0;

sem_t SemProd;
sem_t SemCon;

void* productor(void *arg)
{
    int counter = 0;
    while(1)
    {
        int ret = sem_wait(&SemProd);
        sleep(2); //模拟输入处理时延
        Buffer[tail] = counter;
        
        printf("in productor: %d, %d\n", counter++, ret);
        tail = (tail + 1) % BUFFER_COUNT; //
        sem_post(&SemCon);
    }
    return NULL;
}

void* consumer(void *arg)
{
    while(1)
    {
        sem_wait(&SemCon);
        sleep(1); //模拟输出处理时延
        printf("in consumer: %d, %d\n", Buffer[front], front);
        front = (front + 1) % BUFFER_COUNT;    
        sem_post(&SemProd);
    }
}

int main(int argv, char **argc)
{
    pthread_t id1, id2;
    sem_init(&SemProd, 0, BUFFER_COUNT);
    sem_init(&SemCon, 0, 0);

    pthread_create(&id1, NULL, productor, NULL);
    pthread_create(&id2, NULL, consumer, NULL);

    pthread_join(id1, NULL);
        pthread_join(id2, NULL);
}
bubuko.com,布布扣

 

linux中的线程同步:生产者、消费者问题,布布扣,bubuko.com

linux中的线程同步:生产者、消费者问题

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/zjgtan/p/3768751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!