Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
yield
线程
RTT线程yield出错
发布于 2021-01-24 14:00:12 浏览:862
订阅该版
```c #define THREAD_STACK_SIZE 1024 #define THREAD_PRIORITY 10 #define THREAD_TIMESLICE 5 /* 线程入口 */ static void thread_entry(void *parameter) { rt_uint32_t value; rt_uint32_t count = 0; value = (rt_uint32_t)parameter; while (1) { rt_kprintf("[thread %d count = %d]\n", value, count++); if (count > 20) return; rt_thread_yield(); } } int timeslice_sample(void) { rt_thread_t tid = RT_NULL; /* 创建线程1*/ tid = rt_thread_create("thread1", thread_entry, (void *)1, THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); if (tid != RT_NULL) rt_thread_startup(tid); /* 创建线程2*/ tid = rt_thread_create("thread2", thread_entry, (void *)2, THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); if (tid != RT_NULL) rt_thread_startup(tid); return 0; } /* 导出到 msh 命令列表中 */ MSH_CMD_EXPORT(timeslice_sample, timeslice sample); ``` 打印的log: ``` msh />timeslice_sample [thread 1 count = 0] [thread 1 count = 1] [thread 1 count = 2] [thread 1 count = 3] [thread 1 count = 4] [thread 1 count = 5] [thread 1 count = 6] [thread 1 count = 7] [thread 1 count = 8] [thread 1 count = 9] [thread 1 count = 10] [thread 1 count = 11] [thread 1 count = 12] [thread 1 count = 13] [thread 1 count = 14] [thread 1 count = 15] [thread 1 count = 16] [thread 1 count = 17] [thread 1 count = 18] [thread 1 count = 19] [thread 1 count = 20] [thread 2 count = 0] [thread 2 count = 1] [thread 2 count = 2] [thread 2 count = 3] [thread 2 count = 4] [thread 2 count = 5] [thread 2 count = 6] [thread 2 count = 7] [thread 2 count = 8] [thread 2 count = 9] [thread 2 count = 10] [thread 2 count = 11] [thread 2 count = 12] [thread 2 count = 13] [thread 2 count = 14] [thread 2 count = 15] [thread 2 count = 16] [thread 2 count = 17] [thread 2 count = 18] [thread 2 count = 19] [thread 2 count = 20] msh /> ``` 貌似同一级别的线程,yield不起作用 环境:ART-Pi + RT-Studio 2.0.0 + SDK 1.1.0
查看更多
sync
2021-01-25
这家伙很懒,什么也没写!
并不是rt_thread_yield的错,详细原因见此贴https://club.rt-thread.org/ask/question/7808.html
2
个回答
默认排序
按发布时间排序
youshenmebutuo
2021-01-25
这家伙很懒,什么也没写!
你这个用例应该是启动了线程一之后,因为线程一的优先级比shell的优先级高,所以被线程一抢占了,线程一执行完了之后才会去执行创建线程二的操作,所以不会出现你想要的时间片轮询的效果,可以把线程一和线程二的优先级改了比shell的优先级低试一试
撰写答案
登录
注册新账号
关注者
0
被浏览
862
关于作者
Juggernaut
①②③
提问
15
回答
109
被采纳
6
关注TA
发私信
相关问题
1
请问执行rt_thread_delete的操作后,线程还在运行是什么情况?
2
rtthread中,线程中的ADC采样率需求比时钟嘀嗒需求高怎么办?
3
有没有检测系统中有没有某个名字的线程的接口函数?
4
使用finsh 进行ota成功,线程里开ota失败
5
调度锁会引起线程内存不足
6
线程处于close状态消耗资源吗
7
paho_mqtt线程相关疑问
8
thread中不能使用rt_timer_start() 来开启定时器
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
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部