Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
Kernel
第13天:生产者-消费者问题 [15天rt-thread入门学习]
发布于 2018-06-04 21:39:13 浏览:1833
订阅该版
* 本帖最后由 wolfgang2018 于 2018-6-4 22:17 编辑 * 1、创建两个任务,任务1运行中向任务2发送一个信号,任务2收到信号后退出任务的执行 运行结果: ![01.jpg](/uploads/201806/04/213601w7qz0aa9zavkq91e.jpg) 在Thread2 count 在运行5之前,接收到关闭线程信号,Thread2 之后就停止运行; Thread2 在独立运行10次后,也停止运行了。 相关代码: ``` //定义两个用户线程、以及退出运行控制标记 static rt_thread_t utid1 = RT_NULL, utid2 = RT_NULL; static rt_uint8_t rt_break1=0, rt_break2=0; //默认推出控制置0; /* 用户线程2的信号处理函数 */ void thread2_user_signal_handler(int sig){ rt_kprintf("thread2 received signal close %d
", sig); rt_break2=1; //收到信号退出位置1; } /* 用户线程1的入口函数 */ static void user_thread1_entry(void *parameter) { rt_uint8_t cnt = 0; /* 运行10次 */ while (1){ //线程1运行10次后,向线程2发送一个停止线程的信号, //在线程1发送停止信号后10次运行后,线程1也停止线程; if (((cnt/10)>=1) & ((cnt % 10)==0)){ if (rt_break1==1){ break; } rt_thread_kill(utid2, SIGUSR1); rt_break1=1; } rt_kprintf("thread1 count : %d
", cnt); cnt++; rt_thread_delay(100); } rt_kprintf("thread1 close now!!!!!
"); } /* 用户线程2的入口函数 */ static void user_thread2_entry(void *parameter) { rt_uint8_t cnt = 0; /* 安装信号 */ rt_signal_install(SIGUSR1, thread2_user_signal_handler); rt_signal_unmask(SIGUSR1); /* 运行10次 */ while (1) { if (rt_break2==1) { break; } rt_kprintf("thread2 count : %d
", cnt); cnt++; rt_thread_delay(200); } rt_kprintf("thread2 close now!!!
"); } /* 用户线程控制作业函数 */ int user_signal_sample_init(){ utid1 = rt_thread_create("ut1", user_thread1_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY-1, THREAD_TIMESLICE); if (utid1 != RT_NULL) { rt_thread_startup(utid1); } utid2 = rt_thread_create("ut2", user_thread2_entry, RT_NULL, THREAD_STACK_SIZE, THREAD_PRIORITY+1, THREAD_TIMESLICE); if (utid2 != RT_NULL) { rt_thread_startup(utid2); } return 0; } //修改命令行定义方式 /* 如果设置了RT_SAMPLES_AUTORUN,则加入到初始化线程中自动运行 */ #if defined (RT_SAMPLES_AUTORUN) && defined(RT_USING_COMPONENTS_INIT) INIT_APP_EXPORT(signal_sample_init); INIT_APP_EXPORT(user_signal_sample_init); #endif /* 导出到 msh 命令列表中 */ MSH_CMD_EXPORT(signal_sample_init, signal sample); MSH_CMD_EXPORT(user_signal_sample_init, signal sample); ``` [https://www.rt-thread.org/qa/thread-7210-1-1.html](第01天:初识RT-Thread [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7211-1-1.html](第02天:系统启动代码和用户入口 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7261-1-1.html](第03天:线程的创建与删除 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7262-1-1.html](第04天:空闲任务及其钩子函数 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7263-1-1.html](第05天:中断和临界区保护 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7264-1-1.html](第06天:堆的初始化和使用 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7265-1-1.html](第07天:信号量的使用 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7266-1-1.html](第08天:互斥量的使用 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7267-1-1.html](第09天:邮箱的使用 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7268-1-1.html](第10天:消息队列的使用 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7271-1-1.html](第11天:事件的使用 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7272-1-1.html](第12天:生产者-消费者问题 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7274-1-1.html](第14天:软件定时器 [15天rt-thread入门学习]) [https://www.rt-thread.org/qa/thread-7275-1-1.html](第15天:内存池[15天rt-thread入门学习])
查看更多
0
个回答
默认排序
按发布时间排序
暂无答案,快来添加答案吧
撰写答案
登录
注册新账号
关注者
0
被浏览
1.8k
关于作者
wolfgang2018
这家伙很懒,什么也没写!
提问
16
回答
2
被采纳
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
使用百度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
次被采纳
a1012112796
13
个答案
1
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部