summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-05 06:41:14 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-05 06:41:14 -0600
commitc22fe5519089b2897bbf13b576e17127b4ea764b (patch)
tree1d2b4f1937988c2baef5a32c77835af5722c9e13 /apps
parent03f109cf29adb14e2611dc0d602acf03e9fba783 (diff)
downloadpx4-nuttx-c22fe5519089b2897bbf13b576e17127b4ea764b.tar.gz
px4-nuttx-c22fe5519089b2897bbf13b576e17127b4ea764b.tar.bz2
px4-nuttx-c22fe5519089b2897bbf13b576e17127b4ea764b.zip
Fix two uses of DEBUG_COLORATION vs STACK_COLORATION (from David Sidrane). Also some corrected comments
Diffstat (limited to 'apps')
-rw-r--r--apps/system/stackmonitor/Kconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/system/stackmonitor/Kconfig b/apps/system/stackmonitor/Kconfig
index 9756066c0..ca69e5161 100644
--- a/apps/system/stackmonitor/Kconfig
+++ b/apps/system/stackmonitor/Kconfig
@@ -6,10 +6,10 @@
config SYSTEM_STACKMONITOR
bool "Stack monitor"
default n
- depends on DEBUG_COLORATION && !KERNEL_BUILD
+ depends on STACK_COLORATION && !KERNEL_BUILD
---help---
- If the stack coloration feature is enabled (DEBUG_COLORATION) this
- option will select the Stack Moitor. The stack monitor is a daemoni
+ If the stack coloration feature is enabled (STACK_COLORATION) this
+ option will select the Stack Monitor. The stack monitor is a daemon
that will periodically assess stack usage by all tasks and threads
in the system. This feature depends on internal OS features and,
hence, is not available if the NuttX kernel build is selected.