Quality RTOS & Embedded Software

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


Loading

wrong use of #defines in xQUEUE type, v9.0.0

Posted by odman on May 25, 2017

~~~ In queue.c, typedef struct QueueDefinition #if ( configUSETRACEFACILITY == 1 ) UBaseTypet uxQueueNumber; uint8t ucQueueType; //<-- Line 162 #endif

} xQUEUE;

In xQueueGenericReceive(), line 1279 #if ( configUSEMUTEXES == 1 ) { if( pxQueue->uxQueueType == queueQUEUEIS_MUTEX ) {

In my FreeRTOSConfig.h:

define configUSE_MUTEXES ( 1 )
define configUSETRACEFACILITY ( 0 )

~~~ I'm not sure how this even compiles, but it does with GNU ARM 4.9.3. The result is that illegal memory is written with unpredictable consequences.

cheers Knut


wrong use of #defines in xQUEUE type, v9.0.0

Posted by heinbali01 on May 25, 2017

Please have a look at the large comment around line 97, and these defines :

~~~

define pxMutexHolder pcTail
define uxQueueType pcHead

~~~

In case a queue object is in fact a mutex, the two fields are not used in their normal way (head, tail). These are pointers, not characters. uxQueueType will be set to NULL (queueQUEUE_IS_MUTEX).

It may look a bit confusing, but it is entirely local to tasks.c. I'm sure it was done to save a few bytes of RAM.

In another C project a union could be used for this, but union's are not supported by all compilers that are used to compile the FreeRTOS kernel.

The member used when tracing: ucQueueType is indeed an 8-bit field that holds a copy of 'ucQueueType' that was used during creation.

In short: there is nothing wrong with it.


wrong use of #defines in xQUEUE type, v9.0.0

Posted by heinbali01 on May 25, 2017

but it is entirely local to tasks.c

Sorry, not task.c but queue.c of course.

Cheers.


wrong use of #defines in xQUEUE type, v9.0.0

Posted by odman on May 25, 2017

wow. Missed that. Thanks. The good news is that FreeRTOS works, the bad news is that something else is messing up my stack...


[ 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