条件变量的使用方法(笔记)

本文介绍了条件变量的初始化、销毁及阻塞等待等函数,强调了线程可能遭遇的虚假唤醒现象。线程在等待条件变量时,即使没有通知也可能被唤醒,需要通过while循环确保条件满足再执行。同时,正确使用条件变量需结合mutex,保证同步操作的安全。
摘要由CSDN通过智能技术生成

条件变量相关函数、虚假唤醒

初始化一个条件变量

#include <pthread.h>
int pthread_cond_init(pthread_cond_t *restrict cond,
           const pthread_condattr_t *restrict attr);

常量初始化

pthread_cond_t cond = PTHREAD_COND_INITIALIZER;

摧毁一个条件变量

#include <pthread.h>
int pthread_cond_destroy(pthread_cond_t *cond);

条件变量阻塞等待

#include <pthread.h>
int pthread_cond_wait(pthread_cond_t *restrict cond,
           pthread_mutex_t *restrict mutex);
先释放锁 mutex
阻塞在 cond 条件变量上 

超时等待

#include <pthread.h>
int pthread_cond_timedwait(pthread_cond_t *restrict cond,
           pthread_mutex_t *restrict mutex,
           const struct timespec *restrict abstime);
struct timespec {
	time_t tv_sec;   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值