mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Remove static qualifier from queue registry.
This commit is contained in:
parent
6391f4160b
commit
576a25a098
|
@ -162,7 +162,7 @@ unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle pxQueue
|
||||||
/* The queue registry is simply an array of xQueueRegistryItem structures.
|
/* The queue registry is simply an array of xQueueRegistryItem structures.
|
||||||
The pcQueueName member of a structure being NULL is indicative of the
|
The pcQueueName member of a structure being NULL is indicative of the
|
||||||
array position being vacant. */
|
array position being vacant. */
|
||||||
static xQueueRegistryItem xQueueRegistry[ configQUEUE_REGISTRY_SIZE ];
|
xQueueRegistryItem xQueueRegistry[ configQUEUE_REGISTRY_SIZE ];
|
||||||
|
|
||||||
/* Removes a queue from the registry by simply setting the pcQueueName
|
/* Removes a queue from the registry by simply setting the pcQueueName
|
||||||
member to NULL. */
|
member to NULL. */
|
||||||
|
|
Loading…
Reference in a new issue