9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software. If you wish to use our Amazon
14 * FreeRTOS name, please do so in a fair use way that does not cause confusion.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * http://www.FreeRTOS.org
24 * http://aws.amazon.com/freertos
25 *
26 * 1 tab == 4 spaces!
27 */
28
29#ifndef STACK_MACROS_H
30#define STACK_MACROS_H
31
32#ifndef _MSC_VER /* Visual Studio doesn't support #warning. */
33#warning The name of this file has changed to stack_macros.h. Please update your code accordingly. This source file (which has the original name) will be removed in future released.
34#endif
35
36/*
37 * Call the stack overflow hook function if the stack of the task being swapped
38 * out is currently overflowed, or looks like it might have overflowed in the
39 * past.
40 *
41 * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check
42 * the current stack state only - comparing the current top of stack value to
43 * the stack limit. Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1
44 * will also cause the last few stack bytes to be checked to ensure the value
45 * to which the bytes were set when the task was created have not been
46 * overwritten. Note this second test does not guarantee that an overflowed