Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

xTaskPriorityDisinherit when other mutexes are held

Posted by eklundn on December 8, 2016

Hi. In the function xTaskPriorityDisinherit there is the following check: ~~~ /* Only disinherit if no other mutexes are held. */ if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) ~~~ Why does the task not disinherit priority when other mutexes are held? The other mutexes might have a lower priority than the current one, but still higher than uxBasePriority.

Best regards.


xTaskPriorityDisinherit when other mutexes are held

Posted by rtel on December 8, 2016

This is a simplification in the priority inheritance implementation done in the interest of simplicity. A full priority inheritance implementation is complex due to the number of scenarios (there are many combinations of the order in which tasks of various priority can take and release semaphores) and thus results in a lot of additional code and data space requirements for scenarios that almost never occur - hence we opted to implement this simplification.


xTaskPriorityDisinherit when other mutexes are held

Posted by eklundn on December 12, 2016

Thanks for the reply. Is there any write up on the alternative, full priority inheritance implementation? And the different situations that are handled or unhandled?

Because at first sight (actually quite many read through) of the code, it seems possible add full support in very few lines of code. First remove the line in my first post, then add lines that set pxTCB->uxPriority to the highest priority of any task that is blocked by other held mutexes, or to pxTCB->uxBasePriority if no tasks of higher priority is blocked.

Would there be any implications of this proposal? Best regards.


xTaskPriorityDisinherit when other mutexes are held

Posted by davedoors on December 12, 2016

add lines that set pxTCB->uxPriority to the highest priority of any task that is blocked by other held mutexes

There is no way to get that information.


xTaskPriorityDisinherit when other mutexes are held

Posted by eklundn on December 14, 2016

There is no way to get that information.

Well, it could be done by changing uxMutexesHeld to a (linked) list of held mutexes. Then for each mutex in uxMutexesHeld in xTaskPriorityDisinherit do something like:

~~~ xTCB *pxWaitingTCB = listGETOWNEROFHEADENTRY(mutex->xTasksWaitingToReceive); if( NULL != pxWaitingTCB && pxWaitingTCB->uxPriority > uxDisinheritPriority) { uxDisinheritPrioriy = pxWaitingTCB->uxPriority; } ~~~

Finaly setting pxTCB->uxPriority = uxDisinheritPriority;

It is not much code and it will not generate significant performance impact since the list of mutexes held will probably be quite short.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner