Quality RTOS & Embedded Software

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


Loading

Side-effects of using semaphore without creating

Posted by gpathak on April 6, 2017

Hello Experts, I am using FreeRTOS version 8.1.2 on Realtek Ameba board. I have written a code where I am using xSemaphoreGive() and xSemaphoreTake() without creating the semaphore. I want to know what can be the issue of calling these functions without creating a semaphore.


Side-effects of using semaphore without creating

Posted by heinbali01 on April 6, 2017

Very often you will find out that FreeRTOS is lean: in many cases it assumes that parameters have been checked by you. The functions xSemaphoreGive() and xSemaphoreTake() must be called with a valid semaphore handle. If you want to let a task just block, you can use e.g. vTaskDelay().


Side-effects of using semaphore without creating

Posted by gpathak on April 6, 2017

Thanks for your reply @Hein Tibosch. I am not looking for Delaying and blocking a task.

I just want to know the pitfalls, can it cause a hardfalut or crash if xSemaphoreGive() and xSemaphoreTake() is called without creating a semaphore?


Side-effects of using semaphore without creating

Posted by richard_damon on April 6, 2017

Yes, calling any FreeRTOS function with an uninitialize handle has put your proogram into an undefined state and virtually anything can happen. If you are lucky, the call will fault and crash.

My general policy is to create ALL of my Queue, Semaphore and Mutexes that the program will need prior to starting the scheduler, so that it makes it much harder to have that problem.

An alternative is to make sure the handles are zeroed at startup and check the handle prior to making the call, skipping the call or creating the item if it is zero.


Side-effects of using semaphore without creating

Posted by rtel on April 6, 2017

Very often you will find out that FreeRTOS is lean: in many cases it assumes that parameters have been checked by you.

FreeRTOS is designed to keep the code size down. While you are developing checking is performed using configASSERT() (although it assumes things are zero'ed out), then when your code is ready for production, you define configASSERT() away and get smaller faster code - at which point you should make sure all your tests are still working.

SafeRTOS on the other hand has explicit validity checks in C, so everything is checked, all the time.


[ 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