]> git.sur5r.net Git - freertos/blob - Source/include/StackMacros.h
Ready for V5.1.1 release.
[freertos] / Source / include / StackMacros.h
1 /*\r
2         FreeRTOS.org V5.1.1 - Copyright (C) 2003-2008 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section\r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26     ***************************************************************************\r
27     ***************************************************************************\r
28     *                                                                         *\r
29     * SAVE TIME AND MONEY!  We can port FreeRTOS.org to your own hardware,    *\r
30     * and even write all or part of your application on your behalf.          *\r
31     * See http://www.OpenRTOS.com for details of the services we provide to   *\r
32     * expedite your project.                                                  *\r
33     *                                                                         *\r
34     ***************************************************************************\r
35     ***************************************************************************\r
36 \r
37         Please ensure to read the configuration and relevant port sections of the\r
38         online documentation.\r
39 \r
40         http://www.FreeRTOS.org - Documentation, latest information, license and \r
41         contact details.\r
42 \r
43         http://www.SafeRTOS.com - A version that is certified for use in safety \r
44         critical systems.\r
45 \r
46         http://www.OpenRTOS.com - Commercial support, development, porting, \r
47         licensing and training services.\r
48 */\r
49 \r
50 #ifndef STACK_MACROS_H\r
51 #define STACK_MACROS_H\r
52 \r
53 /*\r
54  * Call the stack overflow hook function if the stack of the task being swapped\r
55  * out is currently overflowed, or looks like it might have overflowed in the\r
56  * past.\r
57  *\r
58  * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check\r
59  * the current stack state only - comparing the current top of stack value to\r
60  * the stack limit.  Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1\r
61  * will also cause the last few stack bytes to be checked to ensure the value\r
62  * to which the bytes were set when the task was created have not been \r
63  * overwritten.  Note this second test does not guarantee that an overflowed\r
64  * stack will always be recognised.\r
65  */\r
66 \r
67 /*-----------------------------------------------------------*/\r
68 \r
69 #if( configCHECK_FOR_STACK_OVERFLOW == 0 )\r
70 \r
71         /* FreeRTOSConfig.h is not set to check for stack overflows. */\r
72         #define taskFIRST_CHECK_FOR_STACK_OVERFLOW()\r
73         #define taskSECOND_CHECK_FOR_STACK_OVERFLOW()\r
74 \r
75 #endif /* configCHECK_FOR_STACK_OVERFLOW == 0 */\r
76 /*-----------------------------------------------------------*/\r
77 \r
78 #if( configCHECK_FOR_STACK_OVERFLOW == 1 )\r
79 \r
80         /* FreeRTOSConfig.h is only set to use the first method of\r
81         overflow checking. */\r
82         #define taskSECOND_CHECK_FOR_STACK_OVERFLOW()\r
83 \r
84 #endif\r
85 /*-----------------------------------------------------------*/\r
86 \r
87 #if( ( configCHECK_FOR_STACK_OVERFLOW > 0 ) && ( portSTACK_GROWTH < 0 ) )\r
88 \r
89         /* Only the current stack state is to be checked. */\r
90         #define taskFIRST_CHECK_FOR_STACK_OVERFLOW()                                                                                                            \\r
91         {                                                                                                                                                                                                       \\r
92         extern void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName );          \\r
93                                                                                                                                                                                                                 \\r
94                 /* Is the currently saved stack pointer within the stack limit? */                                                              \\r
95                 if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack )                                                                               \\r
96                 {                                                                                                                                                                                               \\r
97                         vApplicationStackOverflowHook( ( xTaskHandle ) pxCurrentTCB, pxCurrentTCB->pcTaskName );        \\r
98                 }                                                                                                                                                                                               \\r
99         }\r
100 \r
101 #endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */\r
102 /*-----------------------------------------------------------*/\r
103 \r
104 #if( ( configCHECK_FOR_STACK_OVERFLOW > 0 ) && ( portSTACK_GROWTH > 0 ) )\r
105 \r
106         /* Only the current stack state is to be checked. */\r
107         #define taskFIRST_CHECK_FOR_STACK_OVERFLOW()                                                                                                            \\r
108         {                                                                                                                                                                                                       \\r
109         extern void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName );          \\r
110                                                                                                                                                                                                                 \\r
111                 /* Is the currently saved stack pointer within the stack limit? */                                                              \\r
112                 if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack )                                                                  \\r
113                 {                                                                                                                                                                                               \\r
114                         vApplicationStackOverflowHook( ( xTaskHandle ) pxCurrentTCB, pxCurrentTCB->pcTaskName );        \\r
115                 }                                                                                                                                                                                               \\r
116         }\r
117 \r
118 #endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */\r
119 /*-----------------------------------------------------------*/\r
120 \r
121 #if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH < 0 ) )\r
122 \r
123         #define taskSECOND_CHECK_FOR_STACK_OVERFLOW()                                                                                                                                                                                                   \\r
124         {                                                                                                                                                                                                                                                                                               \\r
125         extern void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName );                                                                                                  \\r
126         static const unsigned portCHAR ucExpectedStackBytes[] = {       tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
127                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
128                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
129                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
130                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE };       \\r
131                                                                                                                                                                                                                                                                                                         \\r
132                                                                                                                                                                                                                                                                                                         \\r
133                 /* Has the extremity of the task stack ever been written over? */                                                                                                                                                       \\r
134                 if( memcmp( ( void * ) pxCurrentTCB->pxStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 )                                          \\r
135                 {                                                                                                                                                                                                                                                                                       \\r
136                         vApplicationStackOverflowHook( ( xTaskHandle ) pxCurrentTCB, pxCurrentTCB->pcTaskName );                                                                                                \\r
137                 }                                                                                                                                                                                                                                                                                       \\r
138         }\r
139 \r
140 #endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */\r
141 /*-----------------------------------------------------------*/\r
142 \r
143 #if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) )\r
144 \r
145         #define taskSECOND_CHECK_FOR_STACK_OVERFLOW()                                                                                                                                                                                                   \\r
146         {                                                                                                                                                                                                                                                                                               \\r
147         extern void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName );                                                                                                  \\r
148         portCHAR *pcEndOfStack = ( portCHAR * ) pxCurrentTCB->pxEndOfStack;                                                                                                                                                             \\r
149         static const unsigned portCHAR ucExpectedStackBytes[] = {       tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
150                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
151                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
152                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
153                                                                                                                                 tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE };       \\r
154                                                                                                                                                                                                                                                                                                         \\r
155                                                                                                                                                                                                                                                                                                         \\r
156                 pcEndOfStack -= sizeof( ucExpectedStackBytes );                                                                                                                                                                                         \\r
157                                                                                                                                                                                                                                                                                                         \\r
158                 /* Has the extremity of the task stack ever been written over? */                                                                                                                                                       \\r
159                 if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 )                                                           \\r
160                 {                                                                                                                                                                                                                                                                                       \\r
161                         vApplicationStackOverflowHook( ( xTaskHandle ) pxCurrentTCB, pxCurrentTCB->pcTaskName );                                                                                                \\r
162                 }                                                                                                                                                                                                                                                                                       \\r
163         }\r
164 \r
165 #endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */\r
166 /*-----------------------------------------------------------*/\r
167 \r
168 #endif /* STACK_MACROS_H */\r
169 \r