码迷,mamicode.com
首页 > 编程语言 > 详细

使用互斥量实现多线程交替打印helloworld

时间:2020-05-10 13:11:34      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:ret   加锁   ==   http   std   img   serve   copy   unlock   

/*===============================================================
*  Copyright(C) 2020 Burgess Fan aLL rights reserved.
*  
*  文件名称:mutex.c
*   创 建 者:Burgess
*   创建日期:2020年05月10日
================================================================*/
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
#include <stdlib.h>

pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;
int sum=0;

void* thr1(void *arg)
{
    while(1)
    {
        pthread_mutex_lock(&mutex);//加锁
        printf("I am thread No1,hello world!\n");
        sleep(1);
        pthread_mutex_unlock(&mutex);//释放锁
        sleep(1);//增加睡眠时间确保不会让线程本身抢到锁
    }
}

void* thr2(void *arg)
{
    while(1)
    {
        pthread_mutex_lock(&mutex);
        printf("I am thread No2,HELLO  WORLD!\n");
        sleep(1);
        pthread_mutex_unlock(&mutex);
        sleep(1);
    }
}

int main()
{
    pthread_t tid[2];
    pthread_create(&tid[0],NULL,thr1,NULL);
    pthread_create(&tid[1],NULL,thr2,NULL);
    pthread_join(tid[0],NULL);
    pthread_join(tid[1],NULL);
    return 0;
}

技术图片

 

使用互斥量实现多线程交替打印helloworld

标签:ret   加锁   ==   http   std   img   serve   copy   unlock   

原文地址:https://www.cnblogs.com/Burgess-Fan/p/12862755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!