当前位置:  技术问答>linux和unix

线程广播信号,pthread_cond_wait却仍在等待。

    来源: 互联网  发布时间:2015-08-05

    本文导语:  我刚开始看线程,大家帮我看看下面的程序有什么问题。在第一个pthread_cond_wait那里就卡住了 #include  #include  #include  pthread_mutex_t mymutex; pthread_cond_t mycond; void *thread_function1(void *arg) {         printf("1st: broad ...

我刚开始看线程,大家帮我看看下面的程序有什么问题。在第一个pthread_cond_wait那里就卡住了

#include 
#include 
#include 

pthread_mutex_t mymutex;
pthread_cond_t mycond;

void *thread_function1(void *arg) {
        printf("1st: broad cast myondn");
        pthread_cond_broadcast(&mycond);
        return NULL;
}

void *thread_function2(void *arg) {
        sleep(2);
        printf("2st: broad cast myondn");
        pthread_cond_broadcast(&mycond);
        return NULL;
}

int main(int argc, char **argv) {
        int ret;
        pthread_t mythread1;
        pthread_t mythread2;

        pthread_mutex_init(&mymutex, NULL);
        pthread_cond_init(&mycond, NULL);

        if (pthread_create(&mythread1, NULL, thread_function1, NULL)) {
                printf("create thread1 errorn");
        }

        pthread_mutex_lock(&mymutex);
        pthread_cond_wait(&mycond, &mymutex);
        pthread_mutex_unlock(&mymutex);
        printf("wait1n");

        if (pthread_create(&mythread2, NULL, thread_function2, NULL)) {
                printf("create thread2 errorn");
        }

        pthread_mutex_lock(&mymutex);
        pthread_cond_wait(&mycond, &mymutex);
        pthread_mutex_unlock(&mymutex);
        printf("wait2n");
        return 0;
}

|
if (pthread_create(&mythread1, NULL, thread_function1, NULL)) {
                printf("create thread1 errorn");
        }
执行之后,thread_function1的pthread_cond_broadcast(&mycond);可能执行比main的pthread_cond_wait(&mycond, &mymutex);还要早,信号丢失了,程序当然就在第一个pthread_cond_wait那里就卡住了

信号量应该配合条件变量使用,应该改成:
#include 
#include 
#include 

pthread_mutex_t mymutex;
pthread_cond_t mycond;
int ret=0,ret2=0;

void *thread_function1(void *arg) {
pthread_mutex_lock(&mymutex);
ret = 1;
        printf("1st: broad cast myondn");
        pthread_cond_broadcast(&mycond);
        pthread_mutex_unlock(&mymutex);
        return NULL;
}

void *thread_function2(void *arg) {
pthread_mutex_lock(&mymutex);
ret2 = 1;
        sleep(2);
        printf("2st: broad cast myondn");
        pthread_cond_broadcast(&mycond);
        pthread_mutex_unlock(&mymutex);
        return NULL;
}

int main(int argc, char **argv) {
        pthread_t mythread1;
        pthread_t mythread2;

        pthread_mutex_init(&mymutex, NULL);
        pthread_cond_init(&mycond, NULL);

        if (pthread_create(&mythread1, NULL, thread_function1, NULL)) {
                printf("create thread1 errorn");
        }

        pthread_mutex_lock(&mymutex);
        if (ret==0)
        {
         pthread_cond_wait(&mycond, &mymutex);
        }
        pthread_mutex_unlock(&mymutex);
        printf("wait1n");

        if (pthread_create(&mythread2, NULL, thread_function2, NULL)) {
                printf("create thread2 errorn");
        }

        pthread_mutex_lock(&mymutex);
        if (ret2==0)
        {
         pthread_cond_wait(&mycond, &mymutex);
}
        pthread_mutex_unlock(&mymutex);
        printf("wait2n");
        return 0;
}

|
不是应该晚于,而是如果你的信号先broadcast了,然后再wait,你可以wait得到信号吗?

    
 
 

您可能感兴趣的文章:

  • c++的boost库多线程(Thread)编程(线程操作,互斥体mutex,条件变量)详解 iis7站长之家
  • UNIX中多个线程同时捕捉信号,信号由那个线程捕捉到?
  • linux 下多线程 每个线程能否使用alarm来处理,信号是否会乱呢?
  • 信号与线程的问题
  • 请问在单进程,多线程程序里,线程间使用IPC的信号量来同步,能行吗?
  • 线程如何给自己注册时钟信号?
  • linux多线程信号问题
  • 信号量可以用于多进程多线程同时互斥不?
  • 请教:多线程模式下的信号处理问题
  • 多线程对信号的处理
  • 使用信号量如何退出线程?
  • 多线程socket程序莫名其妙接收到SIGALRM信号问题。
  • 请问线程中的信号量,怎么设置成0,1信号量?
  • 用户态能否实现信号量机制,来提供线程间互斥和同步的功能?
  • 进程、线程和信号屏蔽字的困惑
  • linux 线程 信号
  • 进程处理信号都不陌生,但线程处理信号……,进者有分
  • 信号的传递和接收是否是线程安全的?
  • 问个线程安全和异步信号安全函数的问题
  • HP-UX移植到RedHat Linux过程中的多线程和信号处理
  • 紧急求助:关于线程中接收alarm信号的问题
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Java中多线程相关类Thread介绍
  • 一个进程创建了两个线程,如何使得当任何一个线程(比如线程a)结束时,同时也结束线程b,也就是使两个线程一起死掉,怎么办呢?
  • c#多线程更新窗口(winform)GUI的数据
  • java 线程,对当前线程(非主线程)调用sleep,为什么主线程(窗口)也没反应了
  • Windows和Linux下C++类成员方法作为线程函数方法介绍
  • 如何实现一个线程组内多线程的非同不执行,即一个线程执行完毕后再执行下一个线程???
  • c++的boost库多线程(Thread)编程(线程操作,互斥体mutex,条件变量)详解
  • 请问:进程创建的线程是怎样运行的啊,线程的处理函数运行完了,线程就退出了吗?
  • Linux下GCC内置原子操作函数(多线程资源访问)介绍
  • 关于线程的问题,什么样的线程不是active线程?
  • 请问Linux核心支持多线程吗?开发库有线程库吗?线程好用吗?(稳定?)
  • 请问,在一个进程中创建多线程时如何能避免不同的线程获得同一个线程标识
  • 我的一个多线程服务里, 总是有一个线程莫名其妙的变成僵尸线程。
  • 能否通过线程id控制线程的状态?或是观察到线程的状态?
  • 如何在一个线程中启动另外一个线程,然后本线程就退出?
  • 我要设置一个线程的优先级, 这个属性结构并没有线程的id,它怎么知道是设置哪个线程呢?
  • 请问在java多线程中,是只有run(){}内的代码运行在一个新线程下呢?还是这个类中的代码都运行在一个新线程下?
  • gcc链接的库,分不分单线程版本的和多线程版本的?
  • 内核栈~ 内核线程 ~用户线程 之间关系 问题
  • 子线程的数据如何返回给主线程?
  • 如果父线程死掉 那么子线程会不会死掉呢


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3