如何实现线程互等,线程2等待线程1结束后才继续执行。(可设置标志位) 求源代码

 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)+提问者悬赏50(财富值+成长值)
饶磊039
推荐于2016-12-06 · TA获得超过989个赞
知道小有建树答主
回答量:933
采纳率:0%
帮助的人:666万
展开全部
pthread_exit(NULL);

}

int main()

{

//初始化一个互斥锁

pthread_mutex_init(&mut,NULL);

//创建A同学线程

pthread_create(&thread[0], NULL,studentA,NULL);

//创建B同学线程

pthread_create(&thread[1], NULL,studentB,NULL);

//等待A同学线程结束

pthread_join(thread[0],NULL);

//等待B同学线程结束

pthread_join(thread[1],NULL);

}
更多追问追答
追答
number = 0;

pthread_mutex_unlock(&mut);

printf("student B has finish his work\n");

//退出

pthread_exit(NULL);

}

int main()

{

//初始化一个互斥锁

pthread_mutex_init(&mut,NULL);

//创建A同学线程

pthread_create(&thread[0], NULL,studentA,NULL);

//创建B同学线程

pthread_create(&thread[1], NULL,studentB,NULL);

//等待A同学线程结束

pthread_join(thread[0],NULL);

//等待B同学线程结束

pthread_join(thread[1],NULL);

}
自己学习的笔记
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
y138828
2015-04-27 · 超过72用户采纳过TA的回答
知道小有建树答主
回答量:141
采纳率:0%
帮助的人:82.8万
展开全部
int lock = 1;
void * thread_1(void *info){
 
     // do job
     
     
    pthread_mutex_lock(&mutex);
    lock = 0;
    pthread_cond_signal(&cond,&mutex);
    pthread_mutex_unlock(&mutex);
    
    return NULL;   
}

void *thread_2(void *info){
    pthread_mutex_lock(&mutex);
    while(lock){
        pthread_cond_wait(&cond,&mutex);
    }
    pthread_mutex_unlock(&mutex);
    
    // do   job
    
    return NULL;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式