linux 互斥锁pthread_mutex_t 等其它函数定义 及 应用实例
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
linux下为了多线程同步,通常用到锁的概念。
互斥锁是一种通过简单的加锁的方法来控制对共享资源的存取,用于解决线程间资源访问的唯一性问题。互斥锁有上锁和解锁两种状态,在同一时刻只能有一个线程掌握某个互斥的锁,拥有上锁状态的线程可以对共享资源进行操作。若其他线程希望对一个已经上了锁的互斥锁上锁,则该线程会被挂起,直到上锁的线程释放掉互斥锁为止。
posix下抽象了一个锁类型的结构:ptread_mutex_t。通过对该结构的操作,来判断资源是否可以访问。顾名思义,加锁(lock)后,别人就无法打开,只有当锁没有关闭(unlock)的时候才能访问资源。它主要用如下5个函数进行操作。
1:pthread_mutex_init(pthread_mutex_t * mutex,const pthread_mutexattr_t *attr); 初始化锁变量mutex。attr为锁属性,NULL值为默认属性。
2:pthread_mutex_lock(pthread_mutex_t *mutex);加锁
3:pthread_mutex_tylock(pthread_mutex_t *mutex);加锁,但是与2不一样的是当锁已经在使用的时候,返回为EBUSY,而不是挂起等待。
4:pthread_mutex_unlock(pthread_mutex_t *mutex);释放锁
5:pthread_mutex_destroy(pthread_mutex_t *mutex);使用完后释放
1.创建和销毁
2.互斥锁属性
3.锁操作
- #include<stdlib.h>
- #include<stdio.h>
- #include<unistd.h>
- #include<pthread.h>
-
- typedef struct ct_sum
- { int sum;
- pthread_mutex_t lock;
- }ct_sum;
-
-
- void * add1(void * cnt)
- {
- pthread_mutex_lock(&(((ct_sum*)cnt)->lock));
- int i;
- for( i=0;i<50;i++){
- (*(ct_sum*)cnt).sum+=i;}
- pthread_mutex_unlock(&(((ct_sum*)cnt)->lock));
- pthread_exit(NULL);
- return 0;
- }
-
-
- void * add2(void *cnt)
- {
- int i;
- cnt= (ct_sum*)cnt;
- pthread_mutex_lock(&(((ct_sum*)cnt)->lock));
- for( i=50;i<101;i++)
- { (*(ct_sum*)cnt).sum+=i;
- }
- pthread_mutex_unlock(&(((ct_sum*)cnt)->lock));
- pthread_exit(NULL);
- return 0;
- }
-
-
- int main(void)
- { int i;
- pthread_t ptid1,ptid2;
- int sum=0;
- ct_sum cnt;
- pthread_mutex_init(&(cnt.lock),NULL);
- cnt.sum=0;
- pthread_create(&ptid1,NULL,add1,&cnt);
- pthread_create(&ptid2,NULL,add2,&cnt);
- pthread_mutex_lock(&(cnt.lock));
- printf("sum %d\n",cnt.sum);
- pthread_mutex_unlock(&(cnt.lock));
- pthread_join(ptid1,NULL);
- pthread_join(ptid2,NULL);
- pthread_mutex_destroy(&(cnt.lock));
- return 0;
- }
互斥锁的一个明显缺点是它只有两种状态:锁定和非锁定。而条件变量通过允许线程阻塞和等待另一个线程放松信号的方法弥补了互斥锁的不足,它常和互斥锁一块使用。使用时,条件变量被用来阻塞一个线程,当条件不满足时,线程往往解开相应的互斥锁并等待条件发生变化。一旦其他的某个线程改变了条件变量,它将通知相应的条件变量唤醒一个或多个正在被此条件阻塞的线程。这些线程将重新锁定互斥锁并重新测试条件是否满足。条件变量上的基本操作有两个。1.触发条件:当条件变为true时;2.等待条件:挂起线程直到其他线程触发条件。条件变量的数据类型是pthreead_cond_t,在使用前也需要初始化。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)