]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/queue.c
Update version numbers ready for release.
[freertos] / FreeRTOS / Source / queue.c
index 905caa58746e61d31fe772fe84ce67fa48f748ea..bd0648b722b9c5f1d2fff9dfd0a728a29dd1ad08 100644 (file)
@@ -1,5 +1,5 @@
 /*\r
- * FreeRTOS Kernel V10.1.0\r
+ * FreeRTOS Kernel V10.1.1\r
  * Copyright (C) 2018 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
  *\r
  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
@@ -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 QueueDefinition\r
+typedef struct QueueDefinition /* Using old naming convention so as not to break kernel aware debuggers. */\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