线程同步
线程的主要优点是通过全局变量来共享信息,即会带了另一个问题,即同一变量可能被多个线程同时访问修改,为避免此问题,使用互斥量来确保同一时刻只有一个线程来访问资源。
互斥量既可以静态分配,也可动态分配。需要注意的是:在使用中,如果其他线程(或自己本身线程)已经锁定的这一互斥量,调用mutex_lock()会一直阻塞(或发生死锁)。
同样使用pthread_mutex_unlock()去解锁未锁定的互斥量,或其他线程的互斥量,一样会发生错误。
以下示例代码:
#include <pthread.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
//初始化互斥量
static int g_glob=0;
static pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;
static void *ThreadFun(void argv)
{
int i=((int *)argv);
int erro,cnt=0,j=0;
for(j=0;j<i;j++)
{
//上锁
erro=pthread_mutex_lock(&mutex);
if(erro!=0)
printf(“pthread_mutex_lock fail\n”);
cnt=g_glob;
cnt++;
g_glob=cnt;
//解锁
erro=pthread_mutex_unlock(&mutex);
if(erro!=0)
printf(“pthread_mutex_unlock fail\n”);
}
}
int main(int argc,char **argv)
{
pthread_t thread1,thread2;
int num=atoi(argv[1]),erro;
erro= pthread_create(&thread1,NULL,ThreadFun,&num);
if(erro!=0)
printf(“create thread1 fail\n”);
erro= pthread_create(&thread2,NULL,ThreadFun,&num);
if(erro!=0)
printf(“create thread2 fail\n”);
sleep(5);
printf(“g_glob=%d\n”,g_glob);
exit(EXIT_SUCCESS);
}