Lines Matching full:run

168 …ter; /* The total run time allocated to the task so far, as defined by the run time stats clock.  …
299 * Create a new task and add it to the list of tasks that are ready to run.
334 * @param uxPriority The priority at which the task should run. Systems that
411 * Create a new task and add it to the list of tasks that are ready to run.
438 * @param uxPriority The priority at which the task will run.
539 * Create a new task and add it to the list of tasks that are ready to run.
566 …/ uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged sta…
660 …/ uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged sta…
1224 * // The created task will not run during this period, unless
1275 * // The created task will not run during this period, unless
1329 * It sets the cores on which a task can run. configUSE_CORE_AFFINITY must
1336 * which the task can run. Cores are numbered from 0 to configNUMBER_OF_CORES - 1.
1337 * For example, to ensure that a task can run on core 0 and core 1, set
1351 * // Define the core affinity mask such that this task can only run
1375 * the cores on which a task can run. Cores are numbered from 0 to
1376 * configNUMBER_OF_CORES - 1. For example, if a task can run on core 0 and core 1,
1401 * // The networking task can run on core 0, pin our task to core 1.
2016 * These idle tasks are created to ensure that each core has an idle task to run when
2017 * no other task is available to run.
2065 * These idle tasks are created to ensure that each core has an idle task to run when
2066 * no other task is available to run. Call xTaskGetIdleTaskHandle() or
2086 * of run time consumed by the task. See the TaskStatus_t structure
2104 * total run time (as defined by the run time stats clock, see
2105 * https://www.FreeRTOS.org/rtos-run-time-stats.html) since the target booted.
2106 * pulTotalRunTime can be set to NULL to omit the total run time information.
2115 * // This example demonstrates how a human readable table of run time stats
2150 * // What percentage of the total run time has the task used?
2162 * // consumed less than 1% of the total run time.
2441 * @return The total run time of the given task or the percentage of the total
2442 * run time consumed by the given task. This is the amount of time the task
2483 * @return The total run time of the idle task or the percentage of the total
2484 * run time consumed by the idle task. This is the amount of time the
3555 * that is ready to run.