summaryrefslogtreecommitdiffstats
path: root/doc/user/stackchk.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-17 19:30:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-17 19:30:29 +0000
commit5d2c65e0bdc46677e29a66f51f3bb0d0f3bd8d18 (patch)
treeb94c3bbefc20fb6d95e19361034ad8b4b0658a7e /doc/user/stackchk.t
parent2008-09-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-5d2c65e0bdc46677e29a66f51f3bb0d0f3bd8d18.tar.bz2
2008-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* shell/rtems.t, user/conf.t, user/stackchk.t: Rename STACK_CHECKER_ON to more appropriate CONFIGURE_STACK_CHECKER_ENABLED.
Diffstat (limited to 'doc/user/stackchk.t')
-rw-r--r--doc/user/stackchk.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/stackchk.t b/doc/user/stackchk.t
index 9ac6cf2bdf..06009f1f43 100644
--- a/doc/user/stackchk.t
+++ b/doc/user/stackchk.t
@@ -86,12 +86,12 @@ The application must include the stack bounds checker extension set
in its set of Initial Extensions. This set of extensions is
defined as @code{STACK_CHECKER_EXTENSION}. If using @code{<rtems/confdefs.h>}
for Configuration Table generation, then all that is necessary is
-to define the macro @code{STACK_CHECKER_ON} before including
+to define the macro @code{CONFIGURE_STACK_CHECKER_ENABLED} before including
@code{<rtems/confdefs.h>} as shown below:
@example
@group
-#define STACK_CHECKER_ON
+#define CONFIGURE_STACK_CHECKER_ENABLED
...
#include <rtems/confdefs.h>
@end group