浏览代码

fixed Kconfig IDLE hook config

geniusgogo 6 年之前
父节点
当前提交
1b8d7b3557
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/Kconfig

+ 6 - 1
src/Kconfig

@@ -51,11 +51,16 @@ config RT_USING_OVERFLOW_CHECK
 config RT_USING_HOOK
 config RT_USING_HOOK
     bool "Enable system hook"
     bool "Enable system hook"
     default y
     default y
+	select RT_USING_IDLE_HOOK
     help
     help
         Enable the hook function when system running, such as idle thread hook,
         Enable the hook function when system running, such as idle thread hook,
         thread context switch etc.
         thread context switch etc.
 
 
-    if RT_USING_HOOK
+config RT_USING_IDLE_HOOK
+	bool "Enable IDLE Task hook"
+	default y if RT_USING_HOOK
+
+    if RT_USING_IDLE_HOOK
     config RT_IDEL_HOOK_LIST_SIZE
     config RT_IDEL_HOOK_LIST_SIZE
         int "The max size of idel hook list"
         int "The max size of idel hook list"
         default 4
         default 4