FreeRTOS
tskTaskControlBlock::pxStack
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
Raspberry Pi Pico SDK and Examples
FreeRTOS
tskTaskControlBlock::pxStack
tskTaskControlBlock::pxStack field
Points to the start of the stack.
Syntax
Show:
Summary
Declaration
from
tasks.c:373
StackType_t
*
pxStack
;
Examples
References
from
examples
Code
Location
Referrer
StackType_t
*
pxStack
;
/**< Points to the start of the stack. */
tasks.c:373
pxNewTCB
->
pxStack
=
pxStack
;
tasks.c:1687
prvCreateTask()
(
void
)
memset
(
pxNewTCB
->
pxStack
,
(
int
)
tskSTACK_FILL_BYTE
,
(
size_t
)
uxStackDepth
*
sizeof
(
StackType_t
)
)
;
tasks.c:1826
prvInitialiseNewTask()
pxTopOfStack
=
&
(
pxNewTCB
->
pxStack
[
uxStackDepth
-
(
configSTACK_DEPTH_TYPE
)
1
]
)
;
tasks.c:1836
prvInitialiseNewTask()
pxTaskStatus
->
pxStackBase
=
pxTCB
->
pxStack
;
tasks.c:6148
vTaskGetInfo()
pxTaskStatus
->
usStackHighWaterMark
=
prvTaskCheckFreeStackSpace
(
(
uint8_t
*
)
pxTCB
->
pxStack
)
;
tasks.c:6263
vTaskGetInfo()
pucEndOfStack
=
(
uint8_t
*
)
pxTCB
->
pxStack
;
tasks.c:6395
uxTaskGetStackHighWaterMark()
vPortFreeStack
(
pxTCB
->
pxStack
)
;
tasks.c:6433
prvDeleteTCB()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
tskTaskControlBlock::pxStack
is written by 1 function and is read by 4 functions:
prvCreateTask()
All items filtered out
tskTaskControlBlock::pxStack
prvInitialiseNewTask()
vTaskGetInfo()
uxTaskGetStackHighWaterMark()
prvDeleteTCB()
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