Lines Matching refs:running
40 - has multiple cores running independently. Each core has its own register file, interrupts, and in…
111 …running task (if the provided task handle is ``NULL``). The actual freeing of the task's memory is…
116 - When deleting a task that is currently running on the other core, a yield is triggered on the oth…
119 - The tasks is currently running on this core and is also pinned to this core
120 - The task is not currently running and is not pinned to any core
122 …sk that is currently running on the other core. This is due to the fact that it is difficult to kn…
141 …cheduler can switch execution to another task without the cooperation of the currently running task
160 The resulting schedule will have Task A running on CPU0 and Task C running on CPU1. Task B is not r…
165 In Vanilla FreeRTOS, the scheduler can preempt the currently running task if a higher priority task…
169 - Task A of priority 8 currently running on CPU0
170 - Task B of priority 9 currently running on CPU1
173 The resulting schedule will have Task A running on CPU0 and Task C preempting Task B given that the…
403 …P-IDF FreeRTOS will automatically pin the task to the current core it is running on. This ensures …
425 …RTOS_UNICORE` can also be set. This will result in ESP-IDF FreeRTOS only running on CPU0, and all …
428 …mind that enabling :ref:`CONFIG_FREERTOS_UNICORE` **is NOT equivalent to running Vanilla FreeRTOS*…