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 ;
}