From: RichardBarry Date: Sat, 24 May 2008 18:47:38 +0000 (+0000) Subject: Remove static qualifier from queue registry. X-Git-Tag: V5.0.2~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=132f06080b8cef3b4f6aca5eddd44dd4e842864a;p=freertos Remove static qualifier from queue registry. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@386 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/queue.c b/Source/queue.c index 6bf3ca3e8..8b251c28c 100644 --- a/Source/queue.c +++ b/Source/queue.c @@ -162,7 +162,7 @@ unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle pxQueue /* The queue registry is simply an array of xQueueRegistryItem structures. The pcQueueName member of a structure being NULL is indicative of the 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 member to NULL. */