Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
优先级
就绪列表
5
RT-Thread 线程插入至相同优先级表,没有遍历就绪表,线程节点顺序不乱了吗
发布于 2021-04-14 10:15:39 浏览:838
订阅该版
``` /*源码中没有遍历优先级表,就直接插入节点*/ ``` ``` void rt_schedule_insert_thread(struct rt_thread *thread) { register rt_base_t temp; RT_ASSERT(thread != RT_NULL); /* disable interrupt */ temp = rt_hw_interrupt_disable(); /* it's current thread, it should be RUNNING thread */ if (thread == rt_current_thread) { thread->stat = RT_THREAD_RUNNING | (thread->stat & ~RT_THREAD_STAT_MASK); goto __exit; } /* READY thread, insert to ready queue */ thread->stat = RT_THREAD_READY | (thread->stat & ~RT_THREAD_STAT_MASK); /* insert thread to ready list */ /*没有遍历优先级表,就直接插入节点,是同一优先级表只有一个线程结点吗?*/ rt_list_insert_before(&(rt_thread_priority_table[thread->current_priority]), &(thread->tlist)); RT_DEBUG_LOG(RT_DEBUG_SCHEDULER, ("insert thread[%.*s], the priority: %d\n", RT_NAME_MAX, thread->name, thread->current_priority)); /* ... */ rt_thread_ready_priority_group |= thread->number_mask; /** * @brief insert a node before a list * * @param n new node to be inserted * @param l list to insert it */ rt_inline void rt_list_insert_before(rt_list_t *l,rt_list_t *n) { l->prev->next = n; n->prev = l->prev; l->prev = n; n->next = l; } ```
查看更多
james_s
2021-04-14
这家伙很懒,什么也没写!
rt_schedule_insert_thread只是把线程加到就绪队列, 并没有真正开始调度, 只是调度的一个准备工作. ``` /* * This function will insert a thread to system ready queue. The state of * thread will be set as READY and remove from suspend queue. * * @param thread the thread to be inserted * @note Please do not invoke this function in user application. */ #ifdef RT_USING_SMP void rt_schedule_insert_thread(struct rt_thread *thread) { ``` 调度工作再这个函数里面: /** * This function will perform one scheduling. It will select one thread * with the highest priority level in global ready queue or local ready queue, * then switch to it. */ void rt_schedule(void) 这个会调用 ``` /* * get the highest priority thread in ready queue */ #ifdef RT_USING_SMP static struct rt_thread* _get_highest_priority_thread(rt_ubase_t *highest_prio) ``` 来了找最高优先级. 你说的"遍历"在这里. 调度也就从当前最高优先级的就绪列表里面找到一个进程执行(running状态), 在同一个优先级队列里面, 时间片用完了再找一个, 这样就时间片轮转调度了, 至于说先找谁后找谁他们都是平等的, 并不关心, 只要是就绪的, 转个圈就又轮到它了.
2
个回答
默认排序
按发布时间排序
gy8438242
2021-04-14
这家伙很懒,什么也没写!
/*没有遍历优先级表,就直接插入节点,是同一优先级表只有一个线程结点吗?*/ rt_list_insert_before(&(rt_thread_priority_table[thread->current_priority]), &(thread->tlist)); rt_list_insert_before()定义为rt_list_insert_before(rt_list_t *l,rt_list_t *n),显然第二个参数只是一个普通的地址变量。然后再看看thread->tlist的定义struct rt_thread{...rt_list_t tlist;...}。说明这个是heap里面分配出来的,隶属于该thread数据结构的。 因此,l和n是平等的内存关系,不存在优先级。 线程自己有优先级. 但是优先级的数据结构链表rt_list_t rt_thread_priority_table[RT_THREAD_PRIORITY_MAX];是一个全局变量,没有优先级的概念。任何想要加入的线程,将自己的数据加入就好。 结论:如同小朋友进幼儿园,身份可以写省长孩子,工薪阶层孩子。但是幼儿园只有一个,孩子带着身份进来即可。没那么多事,别想太多不必要的。
撰写答案
登录
注册新账号
关注者
0
被浏览
838
关于作者
xiaotong_n
这家伙很懒,什么也没写!
提问
4
回答
4
被采纳
0
关注TA
发私信
相关问题
1
对源码中优先级处理和定时器的两个疑问?
2
RTT3.1.3低优先级任务delay后不能就绪的问题
3
线程优先级跟功能优先级之间的冲突解决办法
4
can报文发送优先级
5
RTT内核里面的硬定时器的优先级问题
6
线程抢占是否需要等当前任务释放CPU资源
7
不同优先级线程获得信号量后输出不同?
8
RT_TIMER里面分了HARD和SOFT类型,本质有啥区别
9
关于互斥量优先级的问题
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
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部