Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
互斥锁mutex互斥量
优先级
线程2中把rt_thread_mdelay(50);中的50改为100
发布于 2023-05-10 00:11:25 浏览:315
订阅该版
```c #include
/* 指向线程控制块的指针 */ static rt_thread_t tid1 = RT_NULL; static rt_thread_t tid2 = RT_NULL; static rt_thread_t tid3 = RT_NULL; static rt_mutex_t mutex = RT_NULL; #define THREAD_PRIORITY 10 #define THREAD_STACK_SIZE 512 #define THREAD_TIMESLICE 5 /* 线程 1 入口 */ static void thread1_entry(void *parameter) { /* 先让低优先级线程运行 */ rt_thread_mdelay(100); /* 此时 thread3 持有 mutex,并且 thread2 等待持有 mutex */ /* 检查 thread2 与 thread3 的优先级情况 */ if (tid2->current_priority != tid3->current_priority) { /* 优先级不相同,测试失败 */ rt_kprintf("the priority of thread2 is: %d\n", tid2->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 thread2 is: %d\n", tid2->current_priority); rt_kprintf("the priority of thread3 is: %d\n", tid3->current_priority); rt_kprintf("test OK.\n"); } } /* 线程 2 入口 */ static void thread2_entry(void *parameter) { rt_err_t result; rt_kprintf("the priority of thread2 is: %d\n", tid2->current_priority); /* 先让低优先级线程运行 */ rt_thread_mdelay(50); /* * 试图持有互斥锁,此时 thread3 持有,应把 thread3 的优先级提升 * 到 thread2 相同的优先级 */ result = rt_mutex_take(mutex, RT_WAITING_FOREVER); if (result == RT_EOK) { /* 释放互斥锁 */ rt_mutex_release(mutex); } } /* 线程 3 入口 */ static void thread3_entry(void *parameter) { rt_tick_t tick; rt_err_t result; rt_kprintf("the priority of thread3 is: %d\n", tid3->current_priority); result = rt_mutex_take(mutex, RT_WAITING_FOREVER); if (result != RT_EOK) { rt_kprintf("thread3 take a mutex, failed.\n"); } /* 做一个长时间的循环,500ms */ tick = rt_tick_get(); while (rt_tick_get() - tick < (RT_TICK_PER_SECOND / 2)) ; rt_mutex_release(mutex); } int pri_inversion(void) { /* 创建互斥锁 */ mutex = rt_mutex_create("mutex", RT_IPC_FLAG_PRIO); if (mutex == RT_NULL) { rt_kprintf("create dynamic mutex failed.\n"); return -1; } /* 创建线程 1 */ tid1 = rt_thread_create("thread1", thread1_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY - 1, THREAD_TIMESLICE); if (tid1 != RT_NULL) rt_thread_startup(tid1); /* 创建线程 2 */ tid2 = rt_thread_create("thread2", thread2_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); if (tid2 != RT_NULL) rt_thread_startup(tid2); /* 创建线程 3 */ tid3 = rt_thread_create("thread3", thread3_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY + 1, THREAD_TIMESLICE); if (tid3 != RT_NULL) rt_thread_startup(tid3); return 0; } /* 导出到 msh 命令列表中 */ MSH_CMD_EXPORT(pri_inversion, prio_inversion sample); ``` ------------ 这之中把线程2中rt_thread_mdelay(50);中的50改为100后是怎么运行的,为什么结果不变
查看更多
2
个回答
默认排序
按发布时间排序
宇宙码蚁
2023-05-10
接口与实现分离
我用 rtthread 4.1.1 bsp 中的 qemu-vexpress-a9 试了下你的代码, 结果改成100,显示`test failed`,虽然后面打印出的优先级是一样的,但打印了failed说明在前面if判断时是不一样。 50的时候是`test OK`, 所以没有你所说的结果不变。 ![screenshot_image.png](https://oss-club.rt-thread.org/uploads/20230510/9c2a188026f73d3aad181049fed5cf5d.png.webp)
张世争
2023-05-10
学以致用
建议用 代码块 处理一下贴的代码, markdown 格式的。 再就是把 运行结果 与 预期的结果 也贴一下,用于分析。
撰写答案
登录
注册新账号
关注者
0
被浏览
315
关于作者
15524086485zzh
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注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
【RT-Thread】记录一次对主仓的bsp进行修复并提交pr的总结
2
【请投票】嵌入式大赛Top10排名等你来选!
3
【24嵌入式设计大赛】HPM5300-EVK 网络测速仪
4
RT-Thread Nano 上线ST CubeMX
5
Nordic移植笔记: RT_Thread v5.1.0(基于Nordic nRF52840的ble_app_hids_mouse工程)
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
ART-Pi
FinSH
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
rt-smart
FAL
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
flash
packages_软件包
cubemx
PWM
freemodbus
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
rt_mq_消息队列_msg_queue
keil_MDK
C++_cpp
ulog
at_device
SFUD
本月问答贡献
出出啊
1515
个答案
342
次被采纳
小小李sunny
1438
个答案
289
次被采纳
张世争
786
个答案
168
次被采纳
crystal266
546
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
出出啊
1
篇文章
6
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
2
次点赞
crystal266
2
篇文章
1
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部