diff --git a/src/thread.c b/src/thread.c index 0eef331d52188701a442c52b6501df006c77d688..4f7e070e02a053eae56be1d5bc4459e48a927450 100644 --- a/src/thread.c +++ b/src/thread.c @@ -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 @@ -297,8 +299,11 @@ rt_err_t rt_thread_detach(rt_thread_t thread) /* thread check */ RT_ASSERT(thread != RT_NULL); - /* remove from schedule */ - rt_schedule_remove_thread(thread); + 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); - /* remove from schedule */ - rt_schedule_remove_thread(thread); + if (thread->stat != RT_THREAD_INIT) + { + /* remove from schedule */ + rt_schedule_remove_thread(thread); + } /* release thread timer */ rt_timer_detach(&(thread->thread_timer));