]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/queue.c
Changes required for the IAR StateViewer plug-in to work with FreeRTOS V10.1.0.
[freertos] / FreeRTOS / Source / queue.c
index 9de80cd8bb069fdf26093f237ae1be93c26f77a6..905caa58746e61d31fe772fe84ce67fa48f748ea 100644 (file)
@@ -94,7 +94,7 @@ zero. */
  * Items are queued by copy, not reference.  See the following link for the\r
  * rationale: https://www.freertos.org/Embedded-RTOS-Queues.html\r
  */\r
-typedef struct QueueDef_t\r
+typedef struct QueueDefinition\r
 {\r
        int8_t *pcHead;                                 /*< Points to the beginning of the queue storage area. */\r
        int8_t *pcWriteTo;                              /*< Points to the free next place in the storage area. */\r
@@ -120,7 +120,7 @@ typedef struct QueueDef_t
        #endif\r
 \r
        #if ( configUSE_QUEUE_SETS == 1 )\r
-               struct QueueDef_t *pxQueueSetContainer;\r
+               struct QueueDefinition *pxQueueSetContainer;\r
        #endif\r
 \r
        #if ( configUSE_TRACE_FACILITY == 1 )\r