Quality RTOS & Embedded Software

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


Loading

Guarded Resources

Posted by Mathias Zenger on July 10, 2009
Hi,
In my application I have several tasks which need to share data. So far I have just defined some global variables (e.g. byte, word or long size variables and structures) without considering about MUTEX. In the different C files I have referenced the variables with the key word external.

Since I know that this is no proper way for a multitasking system I would like to clean up my design. The resources should be accessed exclusively. Of course I would like to avoid priority inversion or dead locks. Do you think it could be a possible solution to write "setter" and "getter" functions for each resource? Example:

static xSemaphoreHandle xMyTaskMutex = xSemaphoreCreateMutex();
static unsigned long ulMyTaskSharedLong = 0;

void ulMyTaskSetSharedLong(unsigned long param) {
xSemaphoreTake(xMyTaskMutex, portMAX_DELAY) {
ulMyTaskSharedLong = param;
}
xSemaphoreGive(xMyTaskMutex);
}

unsigned long ulMyTaskGetSharedLong() {
return ulMyTaskSharedLong;
}

Do you think this could work? Any better (simpler, saver) solutions? Thanks!
Regards, M.

RE: Guarded Resources

Posted by Dave on July 10, 2009
First consider if the variables need guarding at all. This will depend on their size and where they are read from and written to. If the size is the natural word size of the MCU, and the variable is only written to from one place, then you might not need any guards in place.

RE: Guarded Resources

Posted by Mathias Zenger on July 13, 2009
Thanks for the comment. Perhaps I am chasing shadows. You are right: if word size matches then the operations become atomic. On my AVR32 system the context switches performed by FreeRTOS save/restore all 32 general purpose registers, the staus register, the program counter and the two stack pointer registers. Obviously the kernel does the main work anyway. However, do you think using mutex for writing shared resources is appropriate? What cases do you consider as critical and how do you handle them in your projects?


[ 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