Linux C 多线程编程

Linux C 多线程编程,通过一个简短的例子 实现多线程数据共享,以及线程间的传参问题!使用互斥锁!


#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>

int number = 0 ;
pthread_mutex_t mut ;


void *thread(void * arg)
{
	printf("%d\n",(int )arg);//从主线程中获取参数
	int a = 1000 ;
	pthread_exit((void *)a) ;//退出线程 并传递参数 给主线程
}

void *thread1(void *arg)
{
	int i = 100 ;
	while(i--)
	{
		sleep(1) ;
		pthread_mutex_lock(&mut) ;//打开互斥缩 ,防止 系统因争夺资源而产生死锁 !
		number ++ ;
		pthread_mutex_unlock(&mut) ;
		printf("Thread1 number = %d\n",number);
	}
	pthread_exit(NULL) ;
}
void *thread2(void *arg)
{
	int i = 100 ;
	while(i--)
	{
		sleep(1) ;
		pthread_mutex_lock(&mut) ;
		number ++ ;
		pthread_mutex_unlock(&mut) ;
		printf("Thread2 number = %d\n",number);
	}
	pthread_exit(NULL) ;
}

int main()
{

	pthread_t tid[2] ;
	
	pthread_mutex_init(&mut,NULL) ;//初始化 互斥锁

	pthread_create(&tid[0] ,NULL,thread1,NULL);//创建线程 
	pthread_create(&tid[1] ,NULL,thread2,NULL);
	
	pthread_join(tid[0],NULL) ;//等待线程结束
	pthread_join(tid[1],NULL) ;

	//pthread_join(tid,(void *)&a) ;

	return 0 ;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值