Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
互斥锁mutex互斥量
优先级
20
关于互斥量优先级的问题
发布于 2021-07-07 11:13:16 浏览:1097
订阅该版
在官方文档 https://www.rt-thread.org/document/site/#/rt-thread-version/rt-thread-standard/programming-manual/ipc1/ipc1 中,介绍到互斥量解决优先级翻转,会将持有互斥量的线程等级提升到等待互斥量中的最高优先级。 但是现在有个问题,把thread1和thread2的代码交换后,即让中优先级(10)的thread2去检测高优先级(9)thread1等待低优先级(11)thread3释放互斥量时,thread3的优先级(11)并不会升到thread1的优先级(9),这是为什么呢? 代码如下:就是简单的交换了thread1_entry和thread2_entry的代码 ```c /* 线程 1 入口 */ static void thread1_entry(void *parameter) { rt_err_t result; rt_kprintf("the priority of thread1 is: %d\n", tid1->current_priority); /* 先让低优先级线程运行 */ rt_thread_mdelay(50); /* * 试图持有互斥锁,此时 thread3 持有,应把 thread3 的优先级提升 * 到 thread1 相同的优先级 */ result = rt_mutex_take(mutex, RT_WAITING_FOREVER); if (result == RT_EOK) { /* 释放互斥锁 */ rt_mutex_release(mutex); } } /* 线程 2 入口 */ static void thread2_entry(void *parameter) { /* 先让低优先级线程运行 */ rt_thread_mdelay(100); /* 此时 thread3 持有 mutex,并且 thread1 等待持有 mutex */ /* 检查 thread1 与 thread3 的优先级情况 */ if (tid1->current_priority != tid3->current_priority) { /* 优先级不相同,测试失败 */ rt_kprintf("the priority of thread1 is: %d\n", tid1->current_priority); rt_kprintf("the priority of thread3 is: %d\n", tid3->current_priority); rt_kprintf("test failed.\n"); return; } else { rt_kprintf("the priority of thread1 is: %d\n", tid1->current_priority); rt_kprintf("the priority of thread3 is: %d\n", tid3->current_priority); rt_kprintf("test OK.\n"); } } ``` 运行结果: ``` msh >pri_inversion the priority of thread1 is: 9 the priority of thread3 is: 11 the priority of thread1 is: 9 the priority of thread3 is: 11 test failed. ```
查看更多
2
个回答
默认排序
按发布时间排序
出出啊
2021-07-07
恃人不如自恃,人之为己者不如己之自为也
交换代码?什么意思? 1 和 2 的优先级换了一下呗,3 的优先级和 1 一样了,2 这个中优先级线程变成最低优先级了, 3 是一个死循环 不会让出cpu的
游走在01的海洋
2021-07-07
In the end, it's not the years in your life that count. It's the life in your years.
一、这样 ,你在线程3中,释放信号量前后时,看看优先级是否和你设置的一样; 二、或者你可以试试互斥量官方文档中的历程,实验一下;
撰写答案
登录
注册新账号
关注者
0
被浏览
1.1k
关于作者
巴菲特不非
这家伙很懒,什么也没写!
提问
14
回答
7
被采纳
1
关注TA
发私信
相关问题
1
对源码中优先级处理和定时器的两个疑问?
2
RTT3.1.3低优先级任务delay后不能就绪的问题
3
线程优先级跟功能优先级之间的冲突解决办法
4
can报文发送优先级
5
RTT内核里面的硬定时器的优先级问题
6
线程抢占是否需要等当前任务释放CPU资源
7
RT-Thread 线程插入至相同优先级表,没有遍历就绪表,线程节点顺序不乱了吗
8
不同优先级线程获得信号量后输出不同?
9
RT_TIMER里面分了HARD和SOFT类型,本质有啥区别
10
新手问题:刚开始学,看到优先级和时间片,有个问题问一下
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
KunYi
6
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部