当前位置:网站首页>挂起等待锁 vs 自旋锁(两者的使用场合)
挂起等待锁 vs 自旋锁(两者的使用场合)
2022-07-05 05:21:00 【abs(ln(1+NaN))】
1、自旋锁的定义
挂起等待锁:当某个线程没有申请到锁的时候,此时该线程会被挂起,即加入到等待队列等待。当锁被释放的时候,就会被唤醒,重新竞争锁
自旋锁:当某个线程没有申请到锁的时候,该线程不会被挂起,而是每隔一段时间检测锁是否被释放。如果锁被释放了,那就竞争锁;如果没有释放,过一会儿再来检测。
2、自旋锁相关函数
Linux提供了一种数据类型来表示自旋锁 —— pthread_spinlock_t
(1) 加锁/解锁函数
(2) 初始化/销毁函数
3、挂起等待锁、自旋锁的使用场景
既然如此,那什么时候应该用自旋锁,什么时候使用挂起等待锁呢?
例子1:你约好你朋友一起去打球,你朋友说要一个小时准备好,于是乎,你就去附近的网吧玩了一个小时打发时间。
例子2:同样是你约朋友去打球,你朋友说5分钟准备好,于是你就在楼下等,每隔1分钟给你朋友发送消息询问情况。
例子1 ——》 挂起等待锁,当临界区运行的时间较长时,我们一般使用挂起等待锁。我们先让线程PCB加入到等待队列中等待,等锁被释放时,再重新申请锁。
例子2 ——》自旋锁,如果这里使用挂起等待锁,可能线程刚加入等待队列,锁就被释放了,将线程唤醒是需要成本的。因此,当临界区运行的时间较短时,我们一般使用自旋锁。
边栏推荐
- Cocos2dx screen adaptation
- [to be continued] [UE4 notes] L1 create and configure items
- Zheng Qing 21 ACM is fun. (3) part of the problem solution and summary
- GBase数据库助力湾区数字金融发展
- 远程升级怕截胡?详解FOTA安全升级
- On-off and on-off of quality system construction
- MySQL数据库(一)
- Use the command character to close the keyboard command of the notebook
- Haut OJ 1357: lunch question (I) -- high precision multiplication
- To the distance we have been looking for -- film review of "flying house journey"
猜你喜欢
[to be continued] [UE4 notes] L1 create and configure items
Research on the value of background repeat of background tiling
Count sort
[paper notes] multi goal reinforcement learning: challenging robotics environments and request for research
【论文笔记】Multi-Goal Reinforcement Learning: Challenging Robotics Environments and Request for Research
[转]MySQL操作实战(一):关键字 & 函数
Introduction to tools in TF-A
Binary search basis
Learning notes of "hands on learning in depth"
Remote upgrade afraid of cutting beard? Explain FOTA safety upgrade in detail
随机推荐
[to be continued] [UE4 notes] L1 create and configure items
支持多模多态 GBase 8c数据库持续创新重磅升级
Remote upgrade afraid of cutting beard? Explain FOTA safety upgrade in detail
Yolov5 ajouter un mécanisme d'attention
Improvement of pointnet++
[binary search] 34 Find the first and last positions of elements in a sorted array
PMP考生,请查收7月PMP考试注意事项
cocos2dx_ Lua particle system
使用命令符关闭笔记本自带键盘命令
Simple modal box
sync.Mutex源码解读
Research on the value of background repeat of background tiling
软件测试 -- 0 序
Solon Auth 认证框架使用演示(更简单的认证框架)
Use the command character to close the keyboard command of the notebook
GBase数据库助力湾区数字金融发展
A complete attack chain
C语言杂谈1
64 horses, 8 tracks, how many times does it take to find the fastest 4 horses at least
Insert sort