firmware
IEM Firmware Documentation
Loading...
Searching...
No Matches
xTaskGetStaticBuffers
Collaboration diagram for xTaskGetStaticBuffers:

task. h

BaseType_t xTaskGetStaticBuffers( TaskHandle_t xTask,
StackType_t ** ppuxStackBuffer,
StaticTask_t ** ppxTaskBuffer );
struct xSTATIC_TCB StaticTask_t
long BaseType_t
Definition portmacro.h:59
portSTACK_TYPE StackType_t
Definition portmacro.h:58
struct tskTaskControlBlock * TaskHandle_t
Definition task.h:92

Retrieve pointers to a statically created task's data structure buffer and stack buffer. These are the same buffers that are supplied at the time of creation.

Parameters
xTaskThe task for which to retrieve the buffers.
ppuxStackBufferUsed to return a pointer to the task's stack buffer.
ppxTaskBufferUsed to return a pointer to the task's data structure buffer.
Returns
pdTRUE if buffers were retrieved, pdFALSE otherwise.