Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
线程资源释放与申请
Thread 类 的start 方法 如何判断线程的资源被空闲任务释放掉?
发布于 2020-12-14 15:00:34 浏览:1106
订阅该版
线程循环结束后立即调用rt_thread_exit,后由空闲任务释放资源,但是线程句柄指针是不为空的,怎么能更好的判断这个线程资源被释放了呢。 ` bool Thread::start() { if(join(0) == RT_EOK)/* if thread is closed*/ { _thread = rt_thread_create(_name, (thread_func_t)func, this, _stack_size, _priority, _tick); } /*if thread started then not start again*/ if(started == false) { if (rt_thread_startup(_thread) == RT_EOK) { started = true; } } return started; } rt_err_t Thread::join(int32_t millisec) { if (started) { rt_int32_t tick; if (millisec < 0) tick = -1; else tick = rt_tick_from_millisecond(millisec); rt_err_t ret = rt_event_recv(&_event, 1, RT_EVENT_FLAG_OR | RT_EVENT_FLAG_CLEAR, tick, RT_NULL); if(ret == RT_EOK) { started = false; _thread = RT_NULL;//认为回收完毕 } return ret; } else { return -RT_ENOSYS; } } ` 在 join 的时候如果申请到 线程退出的事件 表示线程结束,但是不知道线程的资源有没有被释放完毕,强制对线程句柄置0,表示线程资源回收完毕,start 时进行创建 如何判断线程的资源被空闲任务释放掉?
查看更多
1
个回答
默认排序
按发布时间排序
传琦5858
2020-12-14
这家伙很懒,什么也没写!
问题应该算是解决了,因为线程退出时候 会设置为CLOSE , join 的时候 在指针释放前调用 rt_thread_idle_excute ,释放内存 这样就能确保没问题了 ``` /* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes */ #include "Thread.h" using namespace rtthread; Thread::Thread(rt_uint32_t stack_size, rt_uint8_t priority, rt_uint32_t tick, const char *name) : _entry(RT_NULL), _param(RT_NULL), started(false),_stack_size(stack_size),_priority(priority),_tick(tick),_name(name) { rt_event_init(&_event, name, 0); _thread = rt_thread_create(name, (thread_func_t)func, this, stack_size, priority, tick); } Thread::Thread(void (*entry)(void *p), void *p, rt_uint32_t stack_size, rt_uint8_t priority, rt_uint32_t tick, const char *name) : _entry(entry), _param(p), started(false) { rt_event_init(&_event, name, 0); _thread = rt_thread_create(name, (thread_func_t)func, this, stack_size, priority, tick); } Thread::~Thread() { rt_event_detach(&_event); rt_thread_delete(_thread); } bool Thread::start() { /* if thread stop then create a new one */ if(join(0) == RT_EOK) { _thread = rt_thread_create(_name, (thread_func_t)func, this, _stack_size, _priority, _tick); } /* if thread is stop then start */ if(started == false) { if(rt_thread_startup(_thread) == RT_EOK) { started = true; } } return started; } void Thread::sleep(int32_t millisec) { rt_int32_t tick; if (millisec < 0) tick = 1; else tick = rt_tick_from_millisecond(millisec); rt_thread_delay(tick); } void Thread::func(Thread *pThis) { if (pThis->_entry != RT_NULL) { pThis->_entry(pThis->_param); } else { pThis->run(pThis->_param); } /* thread end event send*/ rt_event_send(&pThis->_event, 1); } void Thread::run(void *parameter) { /* please overload this method */ } rt_err_t Thread::wait(int32_t millisec) { return join(millisec); } rt_err_t Thread::join(int32_t millisec) { if (started) { rt_int32_t tick; if (millisec < 0) tick = -1; else tick = rt_tick_from_millisecond(millisec); rt_err_t ret = rt_event_recv(&_event, 1, RT_EVENT_FLAG_OR | RT_EVENT_FLAG_CLEAR, tick, RT_NULL); /* if thread is end */ if(ret == RT_EOK) { /*run the idle excute to clean defunct thread*/ rt_thread_idle_excute(); /*set the thread handle null for next using*/ _thread = RT_NULL; started = false; } return ret; } else { return -RT_ENOSYS; } } ```
撰写答案
登录
注册新账号
关注者
0
被浏览
1.1k
关于作者
传琦5858
这家伙很懒,什么也没写!
提问
4
回答
2
被采纳
0
关注TA
发私信
相关问题
1
线程资源的释放和重启
推荐文章
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
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
7
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部