pthread_cond_wait 详解
配套使用。pthread_cond_wait()函数一进入wait状态就会自动release mutex。当其他线程通过pthread_cond_signal()或pthread_cond_broadcast,把该线程唤醒,使pthread_cond_wait()通过(返回)时,该线程又自动获得该mutex。
wait,而且规范要求pthread_cond_signal至少唤醒一个pthread_cond_wait上的线程,其实有些实现为了简单在单处理器上也会唤醒多个线程.
int x,y;pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER;pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
pthread_mutex_lock(&mut);while (x <= y) {pthread_cond_wait(&cond, &mut);}/* operate on x and y */pthread_mutex_unlock(&mut);
pthread_mutex_lock(&mut);/* modify x and y */if (x > y) pthread_cond_broadcast(&cond);pthread_mutex_unlock(&mut);
#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <pthread.h>#define BUFFER_SIZE 8struct Products{int buffer[BUFFER_SIZE];/*保证存取操作的原子性 互斥性*/pthread_mutex_t locker;/*是否可读*/pthread_cond_t notEmpty;/*是否可写*/pthread_cond_t notFull;int posReadFrom;int posWriteTo;};int BufferIsFull(struct Products* products){if ((products->posWriteTo + 1) % BUFFER_SIZE == products->posReadFrom){return (1);}return (0);}int BufferIsEmpty(struct Products* products){if (products->posWriteTo == products->posReadFrom){return (1);}return (0);}/*制造产品*/。void Produce(struct Products* products, int item){/*原子操作*/pthread_mutex_lock(&products->locker);/*无空间可写入*/while (BufferIsFull(products)){pthread_cond_wait(&products->notFull, &products->locker);}/*写入数据*/products->buffer[products->posWriteTo] = item;products->posWriteTo++;if (products->posWriteTo >= BUFFER_SIZE)products->posWriteTo = 0;/*发信*/pthread_cond_signal(&products->notEmpty);/*解锁*/pthread_mutex_unlock(&products->locker);}int Consume(struct Products* products){int item;pthread_mutex_lock(&products->locker);/*为空时持续等待,无数据可读*/while (BufferIsEmpty(products)){pthread_cond_wait(&products->notEmpty, &products->locker);}/*提取数据*/item = products->buffer[products->posReadFrom];products->posReadFrom++;/*如果到末尾,从头读取*/if (products->posReadFrom >= BUFFER_SIZE)products->posReadFrom = 0;pthread_cond_signal(&products->notFull);pthread_mutex_unlock(&products->locker);return item;}#define END_FLAG (-1)struct Products products;void* ProducerThread(void* data){int i;for (i = 0; i < 16; ++i){printf("producer: %d\n", i);Produce(&products, i);}Produce(&products, END_FLAG);return NULL;}void* ConsumerThread(void* data){int item;while (1){item = Consume(&products);if (END_FLAG == item)break;printf("consumer: %d\n", item);}return (NULL);}int main(int argc, char* argv[]){pthread_t producer;pthread_t consumer;int result;pthread_create(&producer, NULL, &ProducerThread, NULL);pthread_create(&consumer, NULL, &ConsumerThread, NULL);pthread_join(producer, (void *)&result);pthread_join(consumer, (void *)&result);exit(EXIT_SUCCESS);}
#include <pthread.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
pthread_mutex_t mymutex1 = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t mymutex2 = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t mycond = PTHREAD_COND_INITIALIZER;
void *mythread1(void *param)
{
printf("begin mythread1.\n");
pthread_mutex_lock(&mymutex1);
printf("wait in mythread1.\n");
pthread_cond_wait(&mycond,&mymutex1);
pthread_mutex_unlock(&mymutex1);
printf("end mythread1.\n");
return NULL;
}
void *mythread2(void *param)
{
printf("begin mythread2.\n");
pthread_mutex_lock(&mymutex2);
printf("wait in mythread2.\n");
pthread_cond_wait(&mycond,&mymutex2);
pthread_mutex_unlock(&mymutex2);
printf("end mythread2.\n");
return NULL;
}
int main(void)
{
printf("begin main thread.\n");
int i;
pthread_t tid1,tid2;
pthread_create(&tid1,NULL,mythread1,NULL);
pthread_create(&tid2,NULL,mythread2,NULL);
sleep(5);
printf("try to wake up mythread1 and mythread2 in main thread.\n");
if(pthread_cond_broadcast(&mycond)){
printf("error\n");
return 1;
}
void *res;
pthread_join(tid1, &res);
pthread_join(tid2, &res);
printf("end main thread.\n");
return 0;
}
- #include <pthread.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <string.h>
- pthread_mutex_t mymutex1 = PTHREAD_MUTEX_INITIALIZER;
- pthread_mutex_t mymutex2 = PTHREAD_MUTEX_INITIALIZER;
- pthread_cond_t mycond = PTHREAD_COND_INITIALIZER;
- void *mythread1(void *param)
- {
- printf("begin mythread1.\n");
- pthread_mutex_lock(&mymutex1);
- printf("wait in mythread1.\n");
- pthread_cond_wait(&mycond,&mymutex1);
- pthread_mutex_unlock(&mymutex1);
- printf("end mythread1.\n");
- return NULL;
- }
- void *mythread2(void *param)
- {
- printf("begin mythread2.\n");
- pthread_mutex_lock(&mymutex2);
- printf("wait in mythread2.\n");
- pthread_cond_wait(&mycond,&mymutex2);
- pthread_mutex_unlock(&mymutex2);
- printf("end mythread2.\n");
- return NULL;
- }
- int main(void)
- {
- printf("begin main thread.\n");
- int i;
- pthread_t tid1,tid2;
- pthread_create(&tid1,NULL,mythread1,NULL);
- pthread_create(&tid2,NULL,mythread2,NULL);
- sleep(2);
- printf("try to wake up mythread1 and mythread2 in main thread.\n");
- if(pthread_cond_broadcast(&mycond)){
- printf("error\n");
- return 1;
- }
- void *res;
- pthread_join(tid1, &res);
- pthread_join(tid2, &res);
- printf("end main thread.\n");
- return 0;
- }
begin main thread.
begin mythread1.
wait in mythread1.
begin mythread2.
wait in mythread2.
end mythread2.
try to wake up mythread1 and mythread2 in main thread.
end mythread1.
end main thread.
- #include <pthread.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <string.h>
- pthread_mutex_t mymutex1 = PTHREAD_MUTEX_INITIALIZER;
- //pthread_mutex_t mymutex2 = PTHREAD_MUTEX_INITIALIZER;
- pthread_cond_t mycond = PTHREAD_COND_INITIALIZER;
- void *mythread1(void *param)
- {
- printf("begin mythread1.\n");
- pthread_mutex_lock(&mymutex1);
- printf("wait in mythread1.\n");
- pthread_cond_wait(&mycond,&mymutex1);
- pthread_mutex_unlock(&mymutex1);
- printf("end mythread1.\n");
- return NULL;
- }
- void *mythread2(void *param)
- {
- printf("begin mythread2.\n");
- pthread_mutex_lock(&mymutex1);
- printf("wait in mythread2.\n");
- pthread_cond_wait(&mycond,&mymutex1);
- pthread_mutex_unlock(&mymutex1);
- printf("end mythread2.\n");
- return NULL;
- }
- int main(void)
- {
- printf("begin main thread.\n");
- int i;
- pthread_t tid1,tid2;
- pthread_create(&tid1,NULL,mythread1,NULL);
- pthread_create(&tid2,NULL,mythread2,NULL);
- sleep(2);
- printf("try to wake up mythread1 and mythread2 in main thread.\n");
- if(pthread_cond_broadcast(&mycond)){
- printf("error\n");
- return 1;
- }
- void *res;
- pthread_join(tid1, &res);
- pthread_join(tid2, &res);
- printf("end main thread.\n");
- return 0;
- }
$ gcc threadTest.c -o test.exe
123@xyy ~/gcc-test
$ ./test.exe
begin main thread.
begin mythread1.
wait in mythread1.
begin mythread2.
wait in mythread2.
try to wake up mythread1 and mythread2 in main thread.
end mythread1.
end mythread1.
end main thread.
结束!
pthread_cond_wait 详解的更多相关文章
- pthread_cond_signal与pthread_cond_wait详解
转:http://blog.chinaunix.net/uid-11572501-id-3456343.html //pthread_cond_signal 只发信号,内部不会解锁,在Linux 线程 ...
- 条件变量pthread_cond_wait()和pthread_cond_signal()详解
条件变量 条件变量是利用线程间共享的全局变量进行同步的一种机制,主要包括两个动作:一个线程等待"条件变量的条件成立"而挂起:另一个线程使"条件成立" ...
- 转载~kxcfzyk:Linux C语言多线程库Pthread中条件变量的的正确用法逐步详解
Linux C语言多线程库Pthread中条件变量的的正确用法逐步详解 多线程c语言linuxsemaphore条件变量 (本文的读者定位是了解Pthread常用多线程API和Pthread互斥锁 ...
- 通用线程:POSIX 线程详解,第 3 部分 条件互斥量(pthread_cond_t)
使用条件变量提高效率 本文是 POSIX 线程三部曲系列的最后一部分,Daniel 将详细讨论如何使用条件变量.条件变量是 POSIX 线程结构,可以让您在遇到某些条件时“唤醒”线程.可以将它们看作是 ...
- 通用线程:POSIX 线程详解,第 3 部分
通用线程:POSIX 线程详解,第 3 部分 使用条件变量提高效率 Daniel Robbins, 总裁兼 CEO, Gentoo Technologies, Inc. 简介: 本文是 POSIX 线 ...
- POSIX 线程详解(经典必看)
http://www.cnblogs.com/sunminmin/p/4479952.html 总共三部分: 第一部分:POSIX 线程详解 ...
- JUC中的AQS底层详细超详解
摘要:当你使用java实现一个线程同步的对象时,一定会包含一个问题:你该如何保证多个线程访问该对象时,正确地进行阻塞等待,正确地被唤醒? 本文分享自华为云社区<JUC中的AQS底层详细超详解,剖 ...
- Linq之旅:Linq入门详解(Linq to Objects)
示例代码下载:Linq之旅:Linq入门详解(Linq to Objects) 本博文详细介绍 .NET 3.5 中引入的重要功能:Language Integrated Query(LINQ,语言集 ...
- 架构设计:远程调用服务架构设计及zookeeper技术详解(下篇)
一.下篇开头的废话 终于开写下篇了,这也是我写远程调用框架的第三篇文章,前两篇都被博客园作为[编辑推荐]的文章,很兴奋哦,嘿嘿~~~~,本人是个很臭美的人,一定得要截图为证: 今天是2014年的第一天 ...
随机推荐
- 【codevs1028】花店橱窗布置(费用流)
这几天刚学了费用流,找到了这道题来练一练手. 题目: 题目描述 Description 假设以最美观的方式布置花店的橱窗,有F束花,V个花瓶,我们用美学值(一个整数)表示每束花放入每个花瓶所产生的美学 ...
- web应用路径问题(相对路径,绝对路径,动态获取路径)
1.相对路径和绝对路径 绝对路径:以 “ / ” 开头的路径,是完整的路径. 相对路径:不以 “ / ” 开头的路径,是相对于当前web资源目录的路径. 在绝对路径中, “ / ” 的含义有两种解释: ...
- java基础(2)-面向对象(1)
面向对象 面向对象思想 面向对象是相对面向过程而言 面向对象和面向过程都是一种思想 面向过程:强调的是功能行为 面向对象:将功能封装进对象,强调具备了功能的对象 面向对象是基于面向过程的 面向对象举例 ...
- hadoop 伪分布模式环境搭建
一 安装JDK 下载JDK jdk-8u112-linux-i586.tar.gz 解压JDK hadoop@ubuntu:/soft$ tar -zxvf jdk-8u112-li ...
- PAT1058. A+B in Hogwarts (20)
#include <iostream> using namespace std; int ag,as,ak; int bg,bs,bk; int cg,cs,ck; int main(){ ...
- JavaWeb -- Jsp 自定义标签的使用
Jsp中不要有一行Java代码, 需要的Java代码都要封到自定义标签中. 自定义标签的作用: a. 自定义标签除了可以移除jsp页面java代码外,它也可以实现以上功能. b. 控制jsp页面某 ...
- JProgressBar与Timer的配套使用
JProgressBar 的关键在于 setMaxium(int maxValue) 和 setValue(int progressValue); 当ProgressBar的当前值需要Control ...
- java基础篇 -- 导出excel表格数据
本篇文章基于java把数据库中的数据以Excel的方式导出,欢迎各位大神吐槽: 1.基于maven jar包引入如下: <dependency> <groupId>net.so ...
- Amazon EMR(Elastic MapReduce):亚马逊Hadoop托管服务运行架构&Hadoop云服务之战:微软vs.亚马逊
http://s3tools.org/s3cmd Amazon Elastic MapReduce (Amazon EMR)简介 Amazon Elastic MapReduce (Amazon EM ...
- SEM
SEM是Search Engine Marketing的缩写,中文意思是搜索引擎营销.SEM是一种新的网络营销形式.SEM所做的就是全面而有效的利用搜索引擎来进行网络营销和推广.SEM追求最高的性价比 ...