Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
关于线程终止运行问题
发布于 2014-04-29 12:12:59 浏览:1876
订阅该版
求教: 我在代码中运行了2个静态线程,运行一段时间后,都停止了运行。 这两个线程,一个做socket server。 一个做httpclient。都用到了lwip。 我现在最想知道: 1.什么情况会导致类似事情发生?如果其中一个线程的在运行时,卡在了某一个函数上,例如lwip_recv();是否会导致该问题? 2.有什么解决方法么?或者建议也行; 3.有没有办法去判断线程异常? 一旦发现异常,则delete该线程,重新创建。 非常感谢! 部分代码如下: ``` rt_thread_t init_thread; //for static thread of uart.. static struct rt_thread uart_tid; static rt_uint8_t thread1_stack[1024]; //for static thread of server.. static struct rt_thread srv_tid; static rt_uint8_t thread2_stack[1024]; //for static thread of heart beatting.. static struct rt_thread heart_tid; static rt_uint8_t thread3_stack[200]; (其他代码,略。。) void rt_init_thread_entry(void* parameter) { rt_err_t result; result = rt_thread_init(&uart_tid, "uart http client", uart_thread, RT_NULL, &thread1_stack[0], sizeof(thread1_stack), 8, 20); if (result == RT_EOK) rt_thread_startup(&uart_tid); result = rt_thread_init(&srv_tid, "socket server", tcp_server_thread, RT_NULL, &thread2_stack[0], sizeof(thread2_stack),11, 20); if (result == RT_EOK) rt_thread_startup(&srv_tid); } int rt_application_init() { init_thread = rt_thread_create("init", rt_init_thread_entry, RT_NULL,512, 6, 20); if (init_thread != RT_NULL) rt_thread_startup(init_thread); return 0; }```
查看更多
1
个回答
默认排序
按发布时间排序
撰写答案
登录
注册新账号
关注者
0
被浏览
1.9k
关于作者
wohuole
这家伙很懒,什么也没写!
提问
4
回答
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
ART-Pi2移植CMSIS-DAP(基于CherryUSB协议栈)
2
RT-thred的stm32h723对应bsp包CubeMX添加其他外设报错
3
RT-Thread中的time溢出问题,时间戳溢出,解决方法
4
ART-PI使用env驱动ETH网卡,pc和板子可以ping通
5
SystemView线程名字不显示
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
DMA
USB
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
rt-smart
FAL
I2C_IIC
UART
ESP8266
cubemx
WIZnet_W5500
ota在线升级
PWM
BSP
flash
freemodbus
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
keil_MDK
ulog
SFUD
msh
C++_cpp
MicroPython
本月问答贡献
RTT_逍遥
9
个答案
2
次被采纳
xiaorui
3
个答案
2
次被采纳
winfeng
2
个答案
2
次被采纳
三世执戟
8
个答案
1
次被采纳
KunYi
8
个答案
1
次被采纳
本月文章贡献
catcatbing
2
篇文章
5
次点赞
swet123
1
篇文章
4
次点赞
lizimu
1
篇文章
4
次点赞
Days
1
篇文章
4
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部