APIs, concepts, guides, and more

◆ TaskPriority

enum class TaskPriority : int32_t
strong
Description:
TaskPriority defines the priority levels for real-time tasks. The integer value of the enum does not correspond to the underlying operating system priority value. On INtime and Linux, each of these priority levels are given distinct operating system specific priority values.
Enumerator
NonRealTime 

A task without any real-time priority, given the operating system's default.

Lowest 

The lowest real-time priority level for an RTTask. Is above standard thread priorities.

Low 

A low real-time priority level.

MediumLow 

A medium-low real-time priority level.

Medium 

A medium real-time priority level. This is the default priority for real-time tasks.

MediumHigh 

A medium-high real-time priority level.

High 

A high real-time priority level.

Highest 

The highest real-time priority level for an RTTask. Is below the priority of the main thread of the RTTaskManager firmware.

Definition at line 99 of file rttask.h.