2021-01-19

线程同步

线程的主要优点是通过全局变量来共享信息,即会带了另一个问题,即同一变量可能被多个线程同时访问修改,为避免此问题,使用互斥量来确保同一时刻只有一个线程来访问资源。
互斥量既可以静态分配,也可动态分配。需要注意的是:在使用中,如果其他线程(或自己本身线程)已经锁定的这一互斥量,调用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);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值