summaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/config.h b/include/config.h
index 620c484466..9fd63f81d2 100644
--- a/include/config.h
+++ b/include/config.h
@@ -1134,7 +1134,6 @@
#define CONFIG_CMD_SYSJUMP
#define CONFIG_CMD_SYSLOCK
#define CONFIG_CMD_SYSRST
-#undef CONFIG_CMD_TASK_RESET
#undef CONFIG_CMD_TASKREADY
#define CONFIG_CMD_TEMP_SENSOR
#define CONFIG_CMD_TIMERINFO
@@ -3096,27 +3095,6 @@
#undef CONFIG_CTS_TASK_LIST
/*
- * List of tasks that support reset. Tasks listed here must also be included in
- * CONFIG_TASK_LIST.
- *
- * For each task, use macro ENABLE_RESET(n) to enable resets. The parameter n
- * must match the value passed to TASK_{ALWAYS,NOTEST} in CONFIG_TASK_LIST.
- *
- * Tasks that enable resets *must* call task_reset_cleanup() once at the
- * beginning of their main function, and perform task-specific cleanup if
- * necessary.
- *
- * By default, tasks can be reset at any time. To change this behavior, call
- * task_disable_resets() immediately after task_reset_cleanup(), and then enable
- * resets where appropriate.
- *
- * Tasks that predominantly have resets disabled are expected to periodically
- * enable resets, and should always ensure to do so before waiting for long
- * periods (eg when waiting for an event to process).
- */
-#undef CONFIG_TASK_RESET_LIST
-
-/*
* Enable task profiling.
*
* Boards may #undef this to reduce image size and RAM usage.