Linux 线程的互斥和等待 pthread_mutex_lock/pthread_mutex_unlock pthread_cond_wait/pthread_cond_signal...

 

多线程中比较常见的是生产者,消费者的模式。而实现它并不复杂,通过 pthread_mutex_lock/pthread_mutex_unlock pthread_cond_wait/pthread_cond_signal 就可以达到目的:

非常容易犯的错误是,忘记对 mutex 和 mwait 的初始化,有时候会出现非常难以发现的问题。

 

#include <pthread.h>

pthread_mutex_t mutex;
pthread_cond_t mwait;

bool exit_sign;

void init() {

 pthread_mutex_init(mutex, NULL);
 pthread_cond_init(mwait, NULL);

}

void relese() {

exit_sign = 1;

pthread_mutex_unlock(mutex);

pthread_cond_signal(mwait);

pthread_mutex_destroy(mutex);
pthread_cond_destroy(mwait);

}

void pushD(D *data) { pthread_mutex_lock(&D_mutex); if (D_queue.size() >= maxQueueSize) { delete (D_queue.front()); D_queue.pop();
   }
D_queue.push(data); pthread_mutex_unlock(&mutex); pthread_cond_signal(&mwait); return 0; } D* popD() { pthread_mutex_lock(&mutex); D *d = NULL; while (D_queue.size() <= 0 && !exit_sign) { pthread_cond_wait(&mwait, &mutex); } if (exit_sign) { return NULL; } d = D_queue.front(); D_queue.pop(); pthread_mutex_unlock(&mutex); return d; }

 

转载于:https://www.cnblogs.com/beautiful-scenery/p/3589601.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值