Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
线程让出时的一个小问题
发布于 2014-09-01 17:33:10 浏览:2958
订阅该版
[viewtopic.php?f=28&t=1895](http://www.rt-thread.org/phpBB3/viewtopic.php?f=28&t=1895) 参考上边的例子,实验线程让出。 线程的创建代码如下: ```void rt_thread_test(void) { tid2 = rt_thread_create("yield1",yield_test1,RT_NULL,2048,10,20); if(tid2 != RT_NULL) rt_thread_startup(tid2); tid2 = rt_thread_create("yield2",yield_test2,RT_NULL,2048,10,20); if(tid2 != RT_NULL) rt_thread_startup(tid2); }``` 两个线程很简单:就是输出信息,然后让出CPU ```void yield_test1(void* parameter) { rt_uint32_t count = 0; while(1) { rt_thread_yield(); rt_kprintf("thread test1 count:%d ",count++); } } void yield_test2(void* parameter) { rt_uint32_t count = 0; while(1) { rt_kprintf("thread test2 count:%d ",count++); rt_thread_yield(); } }``` 可最终结果却有点问题: 前面都是正常的,后边就开始乱了。如低93次输出,显示test2线程输出一些,然后又来了一个test2线程。把中间的输出打断了 而且每次复位,都是93次输出的时候出现这种情况。谁能帮分析下这是什么原因啊? ```thread test1 count:91 thread test2 count:92 threthread test2 count:93 ad test2 count:93 thread test2 count:94 thread test1 count:93 thread test2 count:95 thread test1 count:94 thread test2 count:96 thread test1 count:95 thread test2 count:97 thread test1 count:96 thread test2 count:98 thread test1 count:97 thread test2 count:99 thread test1 count:98 thread test2 count:100 thread test1 count:99 thread test2 count:101 thread test1 count:100 thread test2 count:102 thread test1 count:101 thread test2 count:103 thread test1 count:102 thread test2 count:104 thread test1 count:103 thread test2 counthread test1 count:104 t:104 thread test1 count:105 thread test2 count:106 thread test1 count:106 thread test2 count:107 thread test1 count:107 thread test2 count:108```
查看更多
6
个回答
默认排序
按发布时间排序
hanshuyujifen
2014-09-01
这家伙很懒,什么也没写!
感觉这个不像是线程操作的问题,倒像是rt_kprintf的问题了
lujun723
2014-09-01
这家伙很懒,什么也没写!
同上,rt_kprintf数据粘连了,另外,线程出让不知道有啥具体意义,一般都是用delay直接切走,不过还是会时不时地两条发到一起了
bernard
2014-09-01
这家伙很懒,什么也没写!
时间片的缘故吧,你可以试试改变下时间片的大小
hanshuyujifen
2014-09-01
这家伙很懒,什么也没写!
>时间片的缘故吧,你可以试试改变下时间片的大小 --- 我增大时间片了,没什么反应。原来是5,现在改成10了还是来样子。 不过这个应该不是主要问题,不管它了 谢谢回复
hanshuyujifen
2014-09-01
这家伙很懒,什么也没写!
>同上,rt_kprintf数据粘连了,另外,线程出让不知道有啥具体意义,一般都是用delay直接切走,不过还是会时不时地两条发到一起了 --- 线程让出,就是当前线程放弃MCU的占有权。将MCU交给OS调度。 此时OS根据调度原则,从就绪队列里边选择优先级最高的任务执行。 用于存在相同优先级的RTOS调度
撰写答案
登录
注册新账号
关注者
0
被浏览
3k
关于作者
hanshuyujifen
这家伙很懒,什么也没写!
提问
1
回答
5
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
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
【NXP-MCXA153】 定时器驱动移植
2
GD32F450 看门狗驱动适配
3
【NXP-MCXA153】看门狗驱动移植
4
RT-Thread Studio V2.2.9 Release Note
5
CherryUSB的bootuf2配置
热门标签
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
UART
WIZnet_W5500
ota在线升级
PWM
freemodbus
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
踩姑娘的小蘑菇
7
个答案
2
次被采纳
a1012112796
16
个答案
1
次被采纳
Ryan_CW
5
个答案
1
次被采纳
红枫
4
个答案
1
次被采纳
张世争
4
个答案
1
次被采纳
本月文章贡献
YZRD
3
篇文章
6
次点赞
catcatbing
3
篇文章
6
次点赞
lizimu
2
篇文章
9
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部