Components/Libraries/XF/FreeRTOS/Mutex

(Difference between revisions)
Jump to: navigation, search
(Member Function Descrition)
(Mutex())
Line 10: Line 10:
 
= Member Function Descrition =
 
= Member Function Descrition =
 
== Mutex() ==
 
== Mutex() ==
 +
=== Description ===
 +
The constructor of the Mutex. It will create a free RTOS Mutex and initialize it
 +
 
== ~Mutex() ==
 
== ~Mutex() ==
 
== bool enter(timeSize oTicksToWait) ==
 
== bool enter(timeSize oTicksToWait) ==

Revision as of 14:18, 10 August 2017

Contents

Mutex

Mutexes are like BinarySemaphores but they include an inheritance mechanism. This means that if a high priority task blocks while attempting to obtain a mutex (entered) that is currently held by a lower priority task, then the priority of the task holding the token is temporarily raised to that of the blocking task.This mechanism is designed to ensure the higher priority task is kept in the blocked state for the shortest time possible, and in so doing minimize the 'priority inversion' that has already occurred.

This mechanism make that Mutexes are the best choice for implement mutual exclusion and protect critical sections.

Member Attributes

emaphoreHandle_t _mutexHandler : the FreeRTOS mutex

Member Function Descrition

Mutex()

Description

The constructor of the Mutex. It will create a free RTOS Mutex and initialize it

~Mutex()

bool enter(timeSize oTicksToWait)

bool enterFromISR()

bool exit()

bool exitFromISR()

bool isCreated()

Personal tools
Namespaces
Variants
Actions
Navigation
Browse
Toolbox