信号量-生产者消费者

本文介绍了一个使用C/C++实现的生产者-消费者模型,通过互斥信号量(semaphores)管理缓冲区(Buff)的空闲状态和满状态,展示了线程间的协作与同步。主要关注了Producer和Consumer函数的实现,以及如何使用`sem_wait`和`sem_post`进行线程同步。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <pthread.h>
#include <semaphore.h>
#include <fcntl.h>
#define BuffSize 10
typedef struct
{
    char buff[30];
}Buff;

Buff buff[BuffSize];


sem_t empty,full,visit;
int in ,out;

void * ProducerFunc(void * arg){
    while (1) {
        sem_wait(&empty);
        sem_wait(&visit);
        //opeate
        sprintf(buff[in].buff,"producer");
        //operate
        in =(in+1)%10;
        sem_post(&visit);
        sem_post(&full);
        printf("Hello World1!\n");
    }
}

void * ConsumerFunc(void * arg){
    while (1) {
        sem_wait(&full);
        sem_wait(&visit);
        //operate
        sprintf(buff[out].buff,"empty");
        //operate
        out = (out+1)%10;
        sem_post(&visit);
        sem_post(&empty);
    }

}

int main(){

    pthread_t proThread;
    pthread_t conThread;
    int ret = 0;
    in=0;
    out=0;

    ret = sem_init(&empty,0,BuffSize);
    ret = sem_init(&full,0,0);
    ret = sem_init(&visit,0,1);

    ret = pthread_create(&proThread,NULL,ProducerFunc,NULL);

    ret = pthread_create(&conThread,NULL,ConsumerFunc,NULL);

    pthread_join(&proThread,NULL);
    pthread_join(&conThread,NULL);

    printf("Hello World!\n");

    return ret;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值