Changeset 5d2c65e in rtems
- Timestamp:
- Sep 17, 2008, 7:30:29 PM (11 years ago)
- Branches:
- 4.10, 4.11, master
- Children:
- 4afd6f4
- Parents:
- b6f298c7
- Location:
- doc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/ChangeLog
rb6f298c7 r5d2c65e 1 2008-09-17 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * shell/rtems.t, user/conf.t, user/stackchk.t: Rename STACK_CHECKER_ON 4 to more appropriate CONFIGURE_STACK_CHECKER_ENABLED. 5 1 6 2008-09-17 Joel Sherrill <joel.sherrill@OARcorp.com> 2 7 -
doc/shell/rtems.t
rb6f298c7 r5d2c65e 167 167 @subheading NOTES: 168 168 169 The @code{ STACK_CHECKER_ON} @code{confdefs.h} constant169 The @code{CONFIGURE_STACK_CHECKER_ENABLED} @code{confdefs.h} constant 170 170 must be defined when the application is configured for this 171 171 command to have any information to report. -
doc/user/conf.t
rb6f298c7 r5d2c65e 185 185 code size than the full IMFS. 186 186 187 @findex STACK_CHECKER_ON 188 @item @code{STACK_CHECKER_ON} is defined when the application 189 wishes to enable run-time stack bounds checking. This increases 190 the time required to create tasks as well as adding overhead 191 to each context switch. By default, this is not defined and 192 thus stack checking is disabled. 187 @findex CONFIGURE_STACK_CHECKER_ENABLED 188 @item @code{CONFIGURED_STACK_CHECKER_ENABLED} is defined when 189 the application wishes to enable run-time stack bounds checking. 190 This increases the time required to create tasks as well as adding 191 overhead to each context switch. By default, this is not defined and 192 thus stack checking is disabled. NOTE: In 4.9 and older, this was named 193 @code{STACK_CHECKER_ON} 193 194 194 195 @end itemize -
doc/user/stackchk.t
rb6f298c7 r5d2c65e 87 87 defined as @code{STACK_CHECKER_EXTENSION}. If using @code{<rtems/confdefs.h>} 88 88 for Configuration Table generation, then all that is necessary is 89 to define the macro @code{ STACK_CHECKER_ON} before including89 to define the macro @code{CONFIGURE_STACK_CHECKER_ENABLED} before including 90 90 @code{<rtems/confdefs.h>} as shown below: 91 91 92 92 @example 93 93 @group 94 #define STACK_CHECKER_ON94 #define CONFIGURE_STACK_CHECKER_ENABLED 95 95 ... 96 96 #include <rtems/confdefs.h>
Note: See TracChangeset
for help on using the changeset viewer.