加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
23130.cc 737 Bytes
一键复制 编辑 原始数据 按行查看 历史
张宇凯 提交于 2023-01-30 12:26 . 线程条件变量
#include<iostream>
#include<string>
#include<unistd.h>
#include<pthread.h>
using namespace std;
pthread_cond_t cond;
pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;
void*waitCommand(void*args)
{
while(true)
{
pthread_cond_wait(&cond,&mutex);
cout << "thread id:"<<pthread_self()<< "run..." <<endl;
}
}
int main()
{
pthread_cond_init(&cond,nullptr);
pthread_t t1,t2,t3;
pthread_create(&t1,nullptr,waitCommand,(void*)"pthread 1");
pthread_create(&t2,nullptr,waitCommand,(void*)"pthread 2");
pthread_create(&t3,nullptr,waitCommand,(void*)"pthread 3");
pthread_join(t1,nullptr);
pthread_join(t2,nullptr);
pthread_join(t3,nullptr);
pthread_cond_destroy(&cond);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化