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.
This commit is contained in:
Joel Sherrill
2008-09-17 19:30:29 +00:00
parent b6f298c7e3
commit 5d2c65e0bd
4 changed files with 15 additions and 9 deletions

View File

@@ -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