FreeRTOS
taskCHECK_FOR_STACK_OVERFLOW
is only used within FreeRTOS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
FreeRTOS
taskCHECK_FOR_STACK_OVERFLOW
taskCHECK_FOR_STACK_OVERFLOW macro
Syntax
Show:
Summary
Declaration
from
stack_macros.h:80
#define
taskCHECK_FOR_STACK_OVERFLOW
(
)
\
{
\
const
uint32_t
*
const
pulStack
=
(
uint32_t
*
)
pxCurrentTCB
->
pxStack
;
\
const
uint32_t
ulCheckValue
=
(
uint32_t
)
0xa5a5a5a5
;
\
\
if
(
(
pulStack
[
0
]
!=
ulCheckValue
)
||
\
(
pulStack
[
1
]
!=
ulCheckValue
)
||
\
(
pulStack
[
2
]
!=
ulCheckValue
)
||
\
(
pulStack
[
3
]
!=
ulCheckValue
)
)
\
{
\
vApplicationStackOverflowHook
(
(
TaskHandle_t
)
pxCurrentTCB
,
pxCurrentTCB
->
pcTaskName
)
;
\
}
\
}
Examples
References
from
examples
Code
Location
#define
taskCHECK_FOR_STACK_OVERFLOW
(
)
\
stack_macros.h:80
#define
taskCHECK_FOR_STACK_OVERFLOW
(
)
stack_macros.h:123
#ifndef
taskCHECK_FOR_STACK_OVERFLOW
stack_macros.h:122
taskCHECK_FOR_STACK_OVERFLOW
(
)
;
tasks.c:3030
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out