|
|
|
@ -153,7 +153,12 @@ typedef struct QueueDefinition
|
|
|
|
|
struct QueueDefinition *pxQueueSetContainer;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
} Queue_t;
|
|
|
|
|
} xQUEUE;
|
|
|
|
|
|
|
|
|
|
/* The old xQUEUE name is maintained above then typedefed to the new Queue_t
|
|
|
|
|
name below to enable the use of older kernel aware debuggers. */
|
|
|
|
|
typedef xQUEUE Queue_t;
|
|
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
@ -169,7 +174,12 @@ typedef struct QueueDefinition
|
|
|
|
|
{
|
|
|
|
|
const char *pcQueueName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
|
|
|
|
|
QueueHandle_t xHandle;
|
|
|
|
|
} QueueRegistryItem_t;
|
|
|
|
|
} xQueueRegistryItem;
|
|
|
|
|
|
|
|
|
|
/* The old xQueueRegistryItem name is maintained above then typedefed to the
|
|
|
|
|
new xQueueRegistryItem name below to enable the use of older kernel aware
|
|
|
|
|
debuggers. */
|
|
|
|
|
typedef xQueueRegistryItem QueueRegistryItem_t;
|
|
|
|
|
|
|
|
|
|
/* The queue registry is simply an array of QueueRegistryItem_t structures.
|
|
|
|
|
The pcQueueName member of a structure being NULL is indicative of the
|
|
|
|
|