FreeRTOS
xIdleTaskHandles
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
xIdleTaskHandles
xIdleTaskHandles variable
Holds the handles of the idle tasks. The idle tasks are created automatically when the scheduler is started.
Syntax
Show:
Summary
Declaration
from
tasks.c:495
static
TaskHandle_t
xIdleTaskHandles
[
configNUMBER_OF_CORES
]
;
Examples
References
from
examples
Code
Location
Referrer
PRIVILEGED_DATA
static
TaskHandle_t
xIdleTaskHandles
[
configNUMBER_OF_CORES
]
;
/**< Holds the handles of the idle tasks. The idle tasks are created automatically when the scheduler is started. */
tasks.c:495
&
xIdleTaskHandles
[
xCoreID
]
)
;
tasks.c:3628
prvCreateIdleTasks()
xIdleTaskHandles
[
xCoreID
]
->
xTaskRunState
=
xCoreID
;
tasks.c:3646
prvCreateIdleTasks()
pxCurrentTCBs
[
xCoreID
]
=
xIdleTaskHandles
[
xCoreID
]
;
tasks.c:3647
prvCreateIdleTasks()
(
void
)
xIdleTaskHandles
;
tasks.c:3753
vTaskStartScheduler()
vTaskDelete
(
xIdleTaskHandles
[
xCoreID
]
)
;
tasks.c:3781
vTaskEndScheduler()
configASSERT
(
(
xIdleTaskHandles
[
xCoreID
]
!=
NULL
)
)
;
tasks.c:4504
xTaskGetIdleTaskHandleForCore()
return
xIdleTaskHandles
[
xCoreID
]
;
tasks.c:4508
xTaskGetIdleTaskHandleForCore()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
xIdleTaskHandles
is read by 4 functions:
All items filtered out
xIdleTaskHandles
prvCreateIdleTasks()
vTaskStartScheduler()
vTaskEndScheduler()
xTaskGetIdleTaskHandleForCore()
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