[Kernel] Fix thread delete and thread detach bug. #712
This commit is contained in:
parent
1368e01470
commit
2d593a22b7
|
@ -36,6 +36,8 @@
|
|||
* 2011-09-08 Bernard fixed the scheduling issue in rt_thread_startup.
|
||||
* 2012-12-29 Bernard fixed compiling warning.
|
||||
* 2016-08-09 ArdaFu add thread suspend and resume hook.
|
||||
* 2017-04-10 armink fixed the rt_thread_delete and rt_thread_detach
|
||||
bug when thread has not startup.
|
||||
*/
|
||||
|
||||
#include <rtthread.h>
|
||||
|
@ -297,8 +299,11 @@ rt_err_t rt_thread_detach(rt_thread_t thread)
|
|||
/* thread check */
|
||||
RT_ASSERT(thread != RT_NULL);
|
||||
|
||||
if (thread->stat != RT_THREAD_INIT)
|
||||
{
|
||||
/* remove from schedule */
|
||||
rt_schedule_remove_thread(thread);
|
||||
}
|
||||
|
||||
/* release thread timer */
|
||||
rt_timer_detach(&(thread->thread_timer));
|
||||
|
@ -392,8 +397,11 @@ rt_err_t rt_thread_delete(rt_thread_t thread)
|
|||
/* thread check */
|
||||
RT_ASSERT(thread != RT_NULL);
|
||||
|
||||
if (thread->stat != RT_THREAD_INIT)
|
||||
{
|
||||
/* remove from schedule */
|
||||
rt_schedule_remove_thread(thread);
|
||||
}
|
||||
|
||||
/* release thread timer */
|
||||
rt_timer_detach(&(thread->thread_timer));
|
||||
|
|
Loading…
Reference in New Issue