Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
Kernel
线程优先级问题
发布于 2019-08-28 08:33:36 浏览:1622
订阅该版
这是我程序里设置的优先级: led1_thread = /* 线程控制块指针 */ rt_thread_create( "led1", /* 线程名字 */ led1_thread_entry, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 3, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (led1_thread != RT_NULL) rt_thread_startup(led1_thread); else return -1; key_thread = /* 线程控制块指针 */ rt_thread_create( "key", /* 线程名字 */ key_thread_entry, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 2, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (key_thread != RT_NULL) rt_thread_startup(key_thread); else return -1; receive_thread = /* 线程控制块指针 */ rt_thread_create( "receive", /* 线程名字 */ receive_thread_entry, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 4, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (receive_thread != RT_NULL) rt_thread_startup(receive_thread); else return -1; send_thread = /* 线程控制块指针 */ rt_thread_create( "send", /* 线程名字 */ send_thread_entry, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 5, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (send_thread != RT_NULL) rt_thread_startup(send_thread); else return -1; receive_thread1 = /* 线程控制块指针 */ rt_thread_create( "receiv1", /* 线程名字 */ receive_thread_entry1, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 6, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (receive_thread1 != RT_NULL) rt_thread_startup(receive_thread1); else return -1; send_thread1 = /* 线程控制块指针 */ rt_thread_create( "send1", /* 线程名字 */ send_thread_entry1, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 7, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (send_thread1 != RT_NULL) rt_thread_startup(send_thread1); else return -1; myprint = /* 线程控制块指针 */ rt_thread_create( "myprint", /* 线程名字 */ myprint_entry, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 8, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (myprint != RT_NULL) rt_thread_startup(myprint); else return -1; receive_thread2 = /* 线程控制块指针 */ rt_thread_create( "receive2", /* 线程名字 */ receive_thread_entry2, /* 线程入口函数 */ RT_NULL, /* 线程入口函数参数 */ 512, /* 线程栈大小 */ 9, /* 线程的优先级 */ 20); /* 线程时间片 */ /* 启动线程,开启调度 */ if (receive_thread2 != RT_NULL) rt_thread_startup(receive_thread2); else return -1; 依次是3 2 4 5 6 7 8 9 而通过PS打印出来的是这样: ps thread pri status sp stack size max used left tick error -------- --- ------- ---------- ---------- ------ ---------- --- receive2 9 suspend 0x000000a4 0x00000200 32% 0x00000014 000 myprint 8 suspend 0x00000094 0x00000200 38% 0x00000005 000 send1 6 suspend 0x0000007c 0x00000200 36% 0x00000007 000 receiv1 6 suspend 0x0000007c 0x00000200 36% 0x00000010 000 send 5 suspend 0x0000008c 0x00000200 27% 0x00000014 000 receive 4 suspend 0x0000009c 0x00000200 30% 0x00000014 000 key 2 suspend 0x0000007c 0x00000200 24% 0x00000014 000 led1 3 suspend 0x0000007c 0x00000200 24% 0x00000014 000 tshell 20 running 0x0000020c 0x00000800 26% 0x00000006 000 tidle0 31 ready 0x00000048 0x00000400 08% 0x0000001d 000 msh > 有点不理解,不知道是什么原因,没有优先级7,变成了6,求解答
查看更多
4
个回答
默认排序
按发布时间排序
tyustli
2019-08-28
这家伙很懒,什么也没写!
只跑一个 7 试试,估计你程序里面有什么地方把优先级改了
bevis
2019-08-28
这家伙很懒,什么也没写!
你优先级7线程里面干了啥
RTT_CH
2019-08-28
这家伙很懒,什么也没写!
原来是我使用了互斥信号量,优先级变了:L
bevis
2019-08-28
这家伙很懒,什么也没写!
>原来是我使用了互斥信号量,优先级变了 --- 我本来也想到优先级翻转,但是我以为这个不会展示出来
撰写答案
登录
注册新账号
关注者
0
被浏览
1.6k
关于作者
RTT_CH
这家伙很懒,什么也没写!
提问
3
回答
5
被采纳
0
关注TA
发私信
相关问题
1
请教cpu使用率分析
2
选择FreeRTOS, 还是RT-Thread。
3
thread heap stack overflow ?
4
rtt消息队列delay问题
5
释放被删除线程的内存地方在哪里啊
6
请教:各线程结束后,释放其中的内存的连续性问题
7
STM32F103中断关于信号量、邮箱问题
8
RTT中的线程栈大小如何控制
9
关于线程由执行态变为挂起态的代码实现,,,
10
rt_malloc(rt_size_t size)内存分配函数最小分配尺寸问题
推荐文章
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
freemodbus主机在freertos的适配,参考rtthread例程
2
开源共生 商业共赢 | RT-Thread 2024开发者大会议程正式发布!
3
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
4
RT-Thread EtherKit开源以太网硬件正式发布
5
还在担心bsp不好维护吗?快使用yml管理主线bsp
热门标签
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
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
rt_mq_消息队列_msg_queue
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
a1012112796
20
个答案
3
次被采纳
张世争
12
个答案
3
次被采纳
踩姑娘的小蘑菇
7
个答案
3
次被采纳
用户名由3_15位
14
个答案
2
次被采纳
rv666
9
个答案
2
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
RTT_逍遥
1
篇文章
8
次点赞
大龄码农
1
篇文章
5
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部