2.6作业

两个线程实现同步

#include <myhead.h>
//定义条件变量
pthread_cond_t cond;
//定义互斥锁
pthread_mutex_t mutex; 
//生产者
void *task1(void *arg)
{
    int num = 3;
    while(num--)
    {
         sleep(1);
         printf("做了一顿饭\n");
         //唤醒等待队列中的所有线程
         pthread_cond_signal(&cond);
    }
    //退出线程
    pthread_exit(NULL);
}
//定义消费者线程
void *task2(void *arg)
{
    //获取锁资源
    pthread_mutex_lock(&mutex);
    //等待生产者线程的资源    
    pthread_cond_wait(&cond, &mutex);
    printf("吃了一顿饭\n");
    //释放锁资源
    pthread_mutex_unlock(&mutex);
    //退出线程
    pthread_exit(NULL);
}
int main(int argc, const char *argv[])
{
	//定义两个线程号
    pthread_t tid1, tid2,tid3,tid4;
    //初始化条件变量
    pthread_cond_init(&cond, NULL);
    //初始化互斥锁
    pthread_mutex_init(&mutex, NULL);
    //创建生产者线程
    if(pthread_create(&tid1, NULL, task1, NULL) != 0)
    {
        printf("tid1 create error\n");
        return -1;
    }
    //创建消费者线程
    if(pthread_create(&tid2, NULL, task2, NULL) != 0)
    {
        printf("tid2 create error\n");
        return -1;
    }
    if(pthread_create(&tid3, NULL, task2, NULL) != 0)
    {
        printf("tid3 create error\n");
        return -1;
    }
    if(pthread_create(&tid4, NULL, task2, NULL) != 0)
    {
        printf("tid4 create error\n");
        return -1;
    }
    //回收线程资源
    pthread_join(tid1 , NULL);
    pthread_join(tid2 , NULL);
    //销毁条件变量
    pthread_cond_destroy(&cond);
    //销毁互斥锁
    pthread_mutex_destroy(&mutex);
	return 0;
}

演示

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值