mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-21 04:07:49 -04:00
Changes required for the IAR StateViewer plug-in to work with FreeRTOS V10.1.0.
This commit is contained in:
parent
b0ce1f61c9
commit
893db45834
6 changed files with 4742 additions and 2565 deletions
|
@ -94,7 +94,7 @@ zero. */
|
|||
* Items are queued by copy, not reference. See the following link for the
|
||||
* rationale: https://www.freertos.org/Embedded-RTOS-Queues.html
|
||||
*/
|
||||
typedef struct QueueDef_t
|
||||
typedef struct QueueDefinition
|
||||
{
|
||||
int8_t *pcHead; /*< Points to the beginning of the queue storage area. */
|
||||
int8_t *pcWriteTo; /*< Points to the free next place in the storage area. */
|
||||
|
@ -120,7 +120,7 @@ typedef struct QueueDef_t
|
|||
#endif
|
||||
|
||||
#if ( configUSE_QUEUE_SETS == 1 )
|
||||
struct QueueDef_t *pxQueueSetContainer;
|
||||
struct QueueDefinition *pxQueueSetContainer;
|
||||
#endif
|
||||
|
||||
#if ( configUSE_TRACE_FACILITY == 1 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue