فهرست منبع

Merge pull request #4719 from mysterywolf/heapwarning

[kernel][idle] _has_defunct_thread函数增加条件编译
Bernard Xiong 4 سال پیش
والد
کامیت
c65e28bbdc
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      src/idle.c

+ 2 - 0
src/idle.c

@@ -127,6 +127,7 @@ rt_err_t rt_thread_idle_delhook(void (*hook)(void))
 
 #endif
 
+#ifdef RT_USING_HEAP
 /* Return whether there is defunctional thread to be deleted. */
 rt_inline int _has_defunct_thread(void)
 {
@@ -140,6 +141,7 @@ rt_inline int _has_defunct_thread(void)
 
     return l->next != l;
 }
+#endif
 
 /**
  * @ingroup Thread