1.4.4.18 OSAL_CRIT_TYPE Enum
1.4.4.18 C
typedef enum OSAL_CRIT_TYPE
{
OSAL_CRIT_TYPE_LOW,
OSAL_CRIT_TYPE_HIGH
} OSAL_CRIT_TYPE;
1.4.4.18 Summary
Enumerated type representing the possible types of critical section.
1.4.4.18 Description
This enum represents possible critical section types.
OSAL_CRIT_TYPE_LOW - Low priority critical section, can be formed by locking the scheduler (if supported by RTOS).
OSAL_CRIT_TYPE_HIGH - High priority critical section, will be formed by disabling all interrupts.
1.4.4.18 Remarks
Critical section types.
