我是靠谱客的博主 开心溪流,最近开发中收集的这篇文章主要介绍Linux下一个简单的多线程互斥锁的例子,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <stdio.h>
#include <pthread.h>
pthread_mutex_t Device_mutex ;
int count=0;
void thread_func1()
{
   while(1)
   {
       pthread_mutex_lock(&Device_mutex);
       printf("thread1: %dn",count);
       pthread_mutex_unlock(&Device_mutex);
       count++;
       sleep(1);
   }

}

void thread_func2()
{
   while(1)
   {
       pthread_mutex_lock(&Device_mutex);
       printf("thread2: %dn",count);
       pthread_mutex_unlock(&Device_mutex);
       count++;
       sleep(1);
   }
}

int main()
{

   pthread_t thread1, thread2;
   pthread_mutex_init(&Device_mutex,NULL);

   if(pthread_create(&thread1,NULL,(void*)thread_func1,NULL) == -1)
	{
		printf("create IP81 Thread error !n");
		exit(1);
	}
	sleep(1);
	if(pthread_create(&thread2,NULL,(void *)thread_func2,NULL) == -1)
	{
		printf("create IP81_2 Thread error!n");
		exit(1);
	}
	sleep(1);
	pthread_join(thread1,NULL);
	pthread_join(thread2,NULL);
	pthread_mutex_destroy(&Device_mutex);

	return 0;
}

最后

以上就是开心溪流为你收集整理的Linux下一个简单的多线程互斥锁的例子的全部内容,希望文章能够帮你解决Linux下一个简单的多线程互斥锁的例子所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部