Quality RTOS & Embedded Software

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


Loading

How early can I use a mutex?

Posted by M Beronius on October 2, 2009
Are there dependencies for mutexes ? I'd like to use a mutex very early on in boot process (main), prior to starting threads. Is this allowed? (the mutexes are created, but vTaskStartScheduler() has not been called)

((I know that the concept of mutexes are not needed at this point, but it makes my code nicer, if I can use existing functions this early in the startup))

Thanks
Micael

RE: How early can I use a mutex?

Posted by Dave on October 2, 2009
You can call functions that do not attempt to block or cause a context switch.

RE: How early can I use a mutex?

Posted by M Beronius on October 2, 2009
Excellent

Thank you for this quick response!!

- Micael


RE: How early can I use a mutex?

Posted by mizer on February 22, 2010
So just to be clear - it is safe to call 'xSemaphoreTake' and 'xSemaphoreGive' -after- the Mutex has been created but -before- the scheduler has been started? I find myself in the same position as the original poster.

Suggestion: perhaps a list of which OS API functions are safe to use before the scheduler has been started would be handy/interesting. Probably not many of them are! I have seen in writing that taskENTER_CRITICAL() and EXIT are safe to use. I wonder which others?


RE: How early can I use a mutex?

Posted by MEdwards on February 22, 2010
I think the semaphore give and take functions will be ok to use before the scheduler is started provided you do not try and block while giving or taking. Keep the block time at zero.

RE: How early can I use a mutex?

Posted by mizer on February 24, 2010
Sorry I've been sidetracked for a few days.

Thanks edwards for your input.

Richard, May I ask that you please definitively state if it is okay to call the xSemaphore Take and Give functions after creating the semaphore but prior to starting the scheduler? I've looked in my copy of both your books hoping to see my answer but couldn't find it.

Thank so much.
-rmd

RE: How early can I use a mutex?

Posted by Richard on February 24, 2010
vSemaphoreCreateBinary() is implemented as:

{                                                                    \
xSemaphore = xQueueCreate( ( unsigned portBASE_TYPE ) 1, 0 ); \
if( xSemaphore != NULL ) \
{ \
xSemaphoreGive( xSemaphore ); \
} \
}


so that would seem to provide the answer as far as xSemaphoreGive() is concerned (yes it is ok to call it). I think the same will be true for taking a semaphore too, provided a block time is never specified (as was previously mentioned).

Regards.

RE: How early can I use a mutex?

Posted by mizer on February 24, 2010
Okay. Thanks guys. I get it now.


[ 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