]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/queue.c
6f79c9211f87b60cae1b794ac3492acd61ef94b8
[freertos] / FreeRTOS / Source / queue.c
1 /*\r
2  * FreeRTOS Kernel V10.2.1\r
3  * Copyright (C) 2019 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 #include <stdlib.h>\r
29 #include <string.h>\r
30 \r
31 /* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining\r
32 all the API functions to use the MPU wrappers.  That should only be done when\r
33 task.h is included from an application file. */\r
34 #define MPU_WRAPPERS_INCLUDED_FROM_API_FILE\r
35 \r
36 #include "FreeRTOS.h"\r
37 #include "task.h"\r
38 #include "queue.h"\r
39 \r
40 #if ( configUSE_CO_ROUTINES == 1 )\r
41         #include "croutine.h"\r
42 #endif\r
43 \r
44 /* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified\r
45 because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined\r
46 for the header files above, but not in this file, in order to generate the\r
47 correct privileged Vs unprivileged linkage and placement. */\r
48 #undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */\r
49 \r
50 \r
51 /* Constants used with the cRxLock and cTxLock structure members. */\r
52 #define queueUNLOCKED                                   ( ( int8_t ) -1 )\r
53 #define queueLOCKED_UNMODIFIED                  ( ( int8_t ) 0 )\r
54 \r
55 /* When the Queue_t structure is used to represent a base queue its pcHead and\r
56 pcTail members are used as pointers into the queue storage area.  When the\r
57 Queue_t structure is used to represent a mutex pcHead and pcTail pointers are\r
58 not necessary, and the pcHead pointer is set to NULL to indicate that the\r
59 structure instead holds a pointer to the mutex holder (if any).  Map alternative\r
60 names to the pcHead and structure member to ensure the readability of the code\r
61 is maintained.  The QueuePointers_t and SemaphoreData_t types are used to form\r
62 a union as their usage is mutually exclusive dependent on what the queue is\r
63 being used for. */\r
64 #define uxQueueType                                             pcHead\r
65 #define queueQUEUE_IS_MUTEX                             NULL\r
66 \r
67 typedef struct QueuePointers\r
68 {\r
69         int8_t *pcTail;                                 /*< Points to the byte at the end of the queue storage area.  Once more byte is allocated than necessary to store the queue items, this is used as a marker. */\r
70         int8_t *pcReadFrom;                             /*< Points to the last place that a queued item was read from when the structure is used as a queue. */\r
71 } QueuePointers_t;\r
72 \r
73 typedef struct SemaphoreData\r
74 {\r
75         TaskHandle_t xMutexHolder;               /*< The handle of the task that holds the mutex. */\r
76         UBaseType_t uxRecursiveCallCount;/*< Maintains a count of the number of times a recursive mutex has been recursively 'taken' when the structure is used as a mutex. */\r
77 } SemaphoreData_t;\r
78 \r
79 /* Semaphores do not actually store or copy data, so have an item size of\r
80 zero. */\r
81 #define queueSEMAPHORE_QUEUE_ITEM_LENGTH ( ( UBaseType_t ) 0 )\r
82 #define queueMUTEX_GIVE_BLOCK_TIME               ( ( TickType_t ) 0U )\r
83 \r
84 #if( configUSE_PREEMPTION == 0 )\r
85         /* If the cooperative scheduler is being used then a yield should not be\r
86         performed just because a higher priority task has been woken. */\r
87         #define queueYIELD_IF_USING_PREEMPTION()\r
88 #else\r
89         #define queueYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API()\r
90 #endif\r
91 \r
92 /*\r
93  * Definition of the queue used by the scheduler.\r
94  * Items are queued by copy, not reference.  See the following link for the\r
95  * rationale: https://www.freertos.org/Embedded-RTOS-Queues.html\r
96  */\r
97 typedef struct QueueDefinition          /* The old naming convention is used to prevent breaking kernel aware debuggers. */\r
98 {\r
99         int8_t *pcHead;                                 /*< Points to the beginning of the queue storage area. */\r
100         int8_t *pcWriteTo;                              /*< Points to the free next place in the storage area. */\r
101 \r
102         union\r
103         {\r
104                 QueuePointers_t xQueue;         /*< Data required exclusively when this structure is used as a queue. */\r
105                 SemaphoreData_t xSemaphore; /*< Data required exclusively when this structure is used as a semaphore. */\r
106         } u;\r
107 \r
108         List_t xTasksWaitingToSend;             /*< List of tasks that are blocked waiting to post onto this queue.  Stored in priority order. */\r
109         List_t xTasksWaitingToReceive;  /*< List of tasks that are blocked waiting to read from this queue.  Stored in priority order. */\r
110 \r
111         volatile UBaseType_t uxMessagesWaiting;/*< The number of items currently in the queue. */\r
112         UBaseType_t uxLength;                   /*< The length of the queue defined as the number of items it will hold, not the number of bytes. */\r
113         UBaseType_t uxItemSize;                 /*< The size of each items that the queue will hold. */\r
114 \r
115         volatile int8_t cRxLock;                /*< Stores the number of items received from the queue (removed from the queue) while the queue was locked.  Set to queueUNLOCKED when the queue is not locked. */\r
116         volatile int8_t cTxLock;                /*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked.  Set to queueUNLOCKED when the queue is not locked. */\r
117 \r
118         #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
119                 uint8_t ucStaticallyAllocated;  /*< Set to pdTRUE if the memory used by the queue was statically allocated to ensure no attempt is made to free the memory. */\r
120         #endif\r
121 \r
122         #if ( configUSE_QUEUE_SETS == 1 )\r
123                 struct QueueDefinition *pxQueueSetContainer;\r
124         #endif\r
125 \r
126         #if ( configUSE_TRACE_FACILITY == 1 )\r
127                 UBaseType_t uxQueueNumber;\r
128                 uint8_t ucQueueType;\r
129         #endif\r
130 \r
131 } xQUEUE;\r
132 \r
133 /* The old xQUEUE name is maintained above then typedefed to the new Queue_t\r
134 name below to enable the use of older kernel aware debuggers. */\r
135 typedef xQUEUE Queue_t;\r
136 \r
137 /*-----------------------------------------------------------*/\r
138 \r
139 /*\r
140  * The queue registry is just a means for kernel aware debuggers to locate\r
141  * queue structures.  It has no other purpose so is an optional component.\r
142  */\r
143 #if ( configQUEUE_REGISTRY_SIZE > 0 )\r
144 \r
145         /* The type stored within the queue registry array.  This allows a name\r
146         to be assigned to each queue making kernel aware debugging a little\r
147         more user friendly. */\r
148         typedef struct QUEUE_REGISTRY_ITEM\r
149         {\r
150                 const char *pcQueueName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */\r
151                 QueueHandle_t xHandle;\r
152         } xQueueRegistryItem;\r
153 \r
154         /* The old xQueueRegistryItem name is maintained above then typedefed to the\r
155         new xQueueRegistryItem name below to enable the use of older kernel aware\r
156         debuggers. */\r
157         typedef xQueueRegistryItem QueueRegistryItem_t;\r
158 \r
159         /* The queue registry is simply an array of QueueRegistryItem_t structures.\r
160         The pcQueueName member of a structure being NULL is indicative of the\r
161         array position being vacant. */\r
162         PRIVILEGED_DATA QueueRegistryItem_t xQueueRegistry[ configQUEUE_REGISTRY_SIZE ];\r
163 \r
164 #endif /* configQUEUE_REGISTRY_SIZE */\r
165 \r
166 /*\r
167  * Unlocks a queue locked by a call to prvLockQueue.  Locking a queue does not\r
168  * prevent an ISR from adding or removing items to the queue, but does prevent\r
169  * an ISR from removing tasks from the queue event lists.  If an ISR finds a\r
170  * queue is locked it will instead increment the appropriate queue lock count\r
171  * to indicate that a task may require unblocking.  When the queue in unlocked\r
172  * these lock counts are inspected, and the appropriate action taken.\r
173  */\r
174 static void prvUnlockQueue( Queue_t * const pxQueue ) PRIVILEGED_FUNCTION;\r
175 \r
176 /*\r
177  * Uses a critical section to determine if there is any data in a queue.\r
178  *\r
179  * @return pdTRUE if the queue contains no items, otherwise pdFALSE.\r
180  */\r
181 static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION;\r
182 \r
183 /*\r
184  * Uses a critical section to determine if there is any space in a queue.\r
185  *\r
186  * @return pdTRUE if there is no space, otherwise pdFALSE;\r
187  */\r
188 static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION;\r
189 \r
190 /*\r
191  * Copies an item into the queue, either at the front of the queue or the\r
192  * back of the queue.\r
193  */\r
194 static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) PRIVILEGED_FUNCTION;\r
195 \r
196 /*\r
197  * Copies an item out of a queue.\r
198  */\r
199 static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION;\r
200 \r
201 #if ( configUSE_QUEUE_SETS == 1 )\r
202         /*\r
203          * Checks to see if a queue is a member of a queue set, and if so, notifies\r
204          * the queue set that the queue contains data.\r
205          */\r
206         static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION;\r
207 #endif\r
208 \r
209 /*\r
210  * Called after a Queue_t structure has been allocated either statically or\r
211  * dynamically to fill in the structure's members.\r
212  */\r
213 static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION;\r
214 \r
215 /*\r
216  * Mutexes are a special type of queue.  When a mutex is created, first the\r
217  * queue is created, then prvInitialiseMutex() is called to configure the queue\r
218  * as a mutex.\r
219  */\r
220 #if( configUSE_MUTEXES == 1 )\r
221         static void prvInitialiseMutex( Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION;\r
222 #endif\r
223 \r
224 #if( configUSE_MUTEXES == 1 )\r
225         /*\r
226          * If a task waiting for a mutex causes the mutex holder to inherit a\r
227          * priority, but the waiting task times out, then the holder should\r
228          * disinherit the priority - but only down to the highest priority of any\r
229          * other tasks that are waiting for the same mutex.  This function returns\r
230          * that priority.\r
231          */\r
232         static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION;\r
233 #endif\r
234 /*-----------------------------------------------------------*/\r
235 \r
236 /*\r
237  * Macro to mark a queue as locked.  Locking a queue prevents an ISR from\r
238  * accessing the queue event lists.\r
239  */\r
240 #define prvLockQueue( pxQueue )                                                         \\r
241         taskENTER_CRITICAL();                                                                   \\r
242         {                                                                                                               \\r
243                 if( ( pxQueue )->cRxLock == queueUNLOCKED )                     \\r
244                 {                                                                                                       \\r
245                         ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED;  \\r
246                 }                                                                                                       \\r
247                 if( ( pxQueue )->cTxLock == queueUNLOCKED )                     \\r
248                 {                                                                                                       \\r
249                         ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED;  \\r
250                 }                                                                                                       \\r
251         }                                                                                                               \\r
252         taskEXIT_CRITICAL()\r
253 /*-----------------------------------------------------------*/\r
254 \r
255 BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue )\r
256 {\r
257 Queue_t * const pxQueue = xQueue;\r
258 \r
259         configASSERT( pxQueue );\r
260 \r
261         taskENTER_CRITICAL();\r
262         {\r
263                 pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */\r
264                 pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U;\r
265                 pxQueue->pcWriteTo = pxQueue->pcHead;\r
266                 pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */\r
267                 pxQueue->cRxLock = queueUNLOCKED;\r
268                 pxQueue->cTxLock = queueUNLOCKED;\r
269 \r
270                 if( xNewQueue == pdFALSE )\r
271                 {\r
272                         /* If there are tasks blocked waiting to read from the queue, then\r
273                         the tasks will remain blocked as after this function exits the queue\r
274                         will still be empty.  If there are tasks blocked waiting to write to\r
275                         the queue, then one should be unblocked as after this function exits\r
276                         it will be possible to write to it. */\r
277                         if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
278                         {\r
279                                 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
280                                 {\r
281                                         queueYIELD_IF_USING_PREEMPTION();\r
282                                 }\r
283                                 else\r
284                                 {\r
285                                         mtCOVERAGE_TEST_MARKER();\r
286                                 }\r
287                         }\r
288                         else\r
289                         {\r
290                                 mtCOVERAGE_TEST_MARKER();\r
291                         }\r
292                 }\r
293                 else\r
294                 {\r
295                         /* Ensure the event queues start in the correct state. */\r
296                         vListInitialise( &( pxQueue->xTasksWaitingToSend ) );\r
297                         vListInitialise( &( pxQueue->xTasksWaitingToReceive ) );\r
298                 }\r
299         }\r
300         taskEXIT_CRITICAL();\r
301 \r
302         /* A value is returned for calling semantic consistency with previous\r
303         versions. */\r
304         return pdPASS;\r
305 }\r
306 /*-----------------------------------------------------------*/\r
307 \r
308 #if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
309 \r
310         QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType )\r
311         {\r
312         Queue_t *pxNewQueue;\r
313 \r
314                 configASSERT( uxQueueLength > ( UBaseType_t ) 0 );\r
315 \r
316                 /* The StaticQueue_t structure and the queue storage area must be\r
317                 supplied. */\r
318                 configASSERT( pxStaticQueue != NULL );\r
319 \r
320                 /* A queue storage area should be provided if the item size is not 0, and\r
321                 should not be provided if the item size is 0. */\r
322                 configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) );\r
323                 configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) );\r
324 \r
325                 #if( configASSERT_DEFINED == 1 )\r
326                 {\r
327                         /* Sanity check that the size of the structure used to declare a\r
328                         variable of type StaticQueue_t or StaticSemaphore_t equals the size of\r
329                         the real queue and semaphore structures. */\r
330                         volatile size_t xSize = sizeof( StaticQueue_t );\r
331                         configASSERT( xSize == sizeof( Queue_t ) );\r
332                         ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */\r
333                 }\r
334                 #endif /* configASSERT_DEFINED */\r
335 \r
336                 /* The address of a statically allocated queue was passed in, use it.\r
337                 The address of a statically allocated storage area was also passed in\r
338                 but is already set. */\r
339                 pxNewQueue = ( Queue_t * ) pxStaticQueue; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */\r
340 \r
341                 if( pxNewQueue != NULL )\r
342                 {\r
343                         #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
344                         {\r
345                                 /* Queues can be allocated wither statically or dynamically, so\r
346                                 note this queue was allocated statically in case the queue is\r
347                                 later deleted. */\r
348                                 pxNewQueue->ucStaticallyAllocated = pdTRUE;\r
349                         }\r
350                         #endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
351 \r
352                         prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue );\r
353                 }\r
354                 else\r
355                 {\r
356                         traceQUEUE_CREATE_FAILED( ucQueueType );\r
357                         mtCOVERAGE_TEST_MARKER();\r
358                 }\r
359 \r
360                 return pxNewQueue;\r
361         }\r
362 \r
363 #endif /* configSUPPORT_STATIC_ALLOCATION */\r
364 /*-----------------------------------------------------------*/\r
365 \r
366 #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
367 \r
368         QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType )\r
369         {\r
370         Queue_t *pxNewQueue;\r
371         size_t xQueueSizeInBytes;\r
372         uint8_t *pucQueueStorage;\r
373 \r
374                 configASSERT( uxQueueLength > ( UBaseType_t ) 0 );\r
375 \r
376                 if( uxItemSize == ( UBaseType_t ) 0 )\r
377                 {\r
378                         /* There is not going to be a queue storage area. */\r
379                         xQueueSizeInBytes = ( size_t ) 0;\r
380                 }\r
381                 else\r
382                 {\r
383                         /* Allocate enough space to hold the maximum number of items that\r
384                         can be in the queue at any time. */\r
385                         xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */\r
386                 }\r
387 \r
388                 /* Allocate the queue and storage area.  Justification for MISRA\r
389                 deviation as follows:  pvPortMalloc() always ensures returned memory\r
390                 blocks are aligned per the requirements of the MCU stack.  In this case\r
391                 pvPortMalloc() must return a pointer that is guaranteed to meet the\r
392                 alignment requirements of the Queue_t structure - which in this case\r
393                 is an int8_t *.  Therefore, whenever the stack alignment requirements\r
394                 are greater than or equal to the pointer to char requirements the cast\r
395                 is safe.  In other cases alignment requirements are not strict (one or\r
396                 two bytes). */\r
397                 pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e9079 see comment above. */\r
398 \r
399                 if( pxNewQueue != NULL )\r
400                 {\r
401                         /* Jump past the queue structure to find the location of the queue\r
402                         storage area. */\r
403                         pucQueueStorage = ( uint8_t * ) pxNewQueue;\r
404                         pucQueueStorage += sizeof( Queue_t ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */\r
405 \r
406                         #if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
407                         {\r
408                                 /* Queues can be created either statically or dynamically, so\r
409                                 note this task was created dynamically in case it is later\r
410                                 deleted. */\r
411                                 pxNewQueue->ucStaticallyAllocated = pdFALSE;\r
412                         }\r
413                         #endif /* configSUPPORT_STATIC_ALLOCATION */\r
414 \r
415                         prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue );\r
416                 }\r
417                 else\r
418                 {\r
419                         traceQUEUE_CREATE_FAILED( ucQueueType );\r
420                         mtCOVERAGE_TEST_MARKER();\r
421                 }\r
422 \r
423                 return pxNewQueue;\r
424         }\r
425 \r
426 #endif /* configSUPPORT_STATIC_ALLOCATION */\r
427 /*-----------------------------------------------------------*/\r
428 \r
429 static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue )\r
430 {\r
431         /* Remove compiler warnings about unused parameters should\r
432         configUSE_TRACE_FACILITY not be set to 1. */\r
433         ( void ) ucQueueType;\r
434 \r
435         if( uxItemSize == ( UBaseType_t ) 0 )\r
436         {\r
437                 /* No RAM was allocated for the queue storage area, but PC head cannot\r
438                 be set to NULL because NULL is used as a key to say the queue is used as\r
439                 a mutex.  Therefore just set pcHead to point to the queue as a benign\r
440                 value that is known to be within the memory map. */\r
441                 pxNewQueue->pcHead = ( int8_t * ) pxNewQueue;\r
442         }\r
443         else\r
444         {\r
445                 /* Set the head to the start of the queue storage area. */\r
446                 pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage;\r
447         }\r
448 \r
449         /* Initialise the queue members as described where the queue type is\r
450         defined. */\r
451         pxNewQueue->uxLength = uxQueueLength;\r
452         pxNewQueue->uxItemSize = uxItemSize;\r
453         ( void ) xQueueGenericReset( pxNewQueue, pdTRUE );\r
454 \r
455         #if ( configUSE_TRACE_FACILITY == 1 )\r
456         {\r
457                 pxNewQueue->ucQueueType = ucQueueType;\r
458         }\r
459         #endif /* configUSE_TRACE_FACILITY */\r
460 \r
461         #if( configUSE_QUEUE_SETS == 1 )\r
462         {\r
463                 pxNewQueue->pxQueueSetContainer = NULL;\r
464         }\r
465         #endif /* configUSE_QUEUE_SETS */\r
466 \r
467         traceQUEUE_CREATE( pxNewQueue );\r
468 }\r
469 /*-----------------------------------------------------------*/\r
470 \r
471 #if( configUSE_MUTEXES == 1 )\r
472 \r
473         static void prvInitialiseMutex( Queue_t *pxNewQueue )\r
474         {\r
475                 if( pxNewQueue != NULL )\r
476                 {\r
477                         /* The queue create function will set all the queue structure members\r
478                         correctly for a generic queue, but this function is creating a\r
479                         mutex.  Overwrite those members that need to be set differently -\r
480                         in particular the information required for priority inheritance. */\r
481                         pxNewQueue->u.xSemaphore.xMutexHolder = NULL;\r
482                         pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX;\r
483 \r
484                         /* In case this is a recursive mutex. */\r
485                         pxNewQueue->u.xSemaphore.uxRecursiveCallCount = 0;\r
486 \r
487                         traceCREATE_MUTEX( pxNewQueue );\r
488 \r
489                         /* Start with the semaphore in the expected state. */\r
490                         ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK );\r
491                 }\r
492                 else\r
493                 {\r
494                         traceCREATE_MUTEX_FAILED();\r
495                 }\r
496         }\r
497 \r
498 #endif /* configUSE_MUTEXES */\r
499 /*-----------------------------------------------------------*/\r
500 \r
501 #if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
502 \r
503         QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType )\r
504         {\r
505         QueueHandle_t xNewQueue;\r
506         const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0;\r
507 \r
508                 xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType );\r
509                 prvInitialiseMutex( ( Queue_t * ) xNewQueue );\r
510 \r
511                 return xNewQueue;\r
512         }\r
513 \r
514 #endif /* configUSE_MUTEXES */\r
515 /*-----------------------------------------------------------*/\r
516 \r
517 #if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )\r
518 \r
519         QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue )\r
520         {\r
521         QueueHandle_t xNewQueue;\r
522         const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0;\r
523 \r
524                 /* Prevent compiler warnings about unused parameters if\r
525                 configUSE_TRACE_FACILITY does not equal 1. */\r
526                 ( void ) ucQueueType;\r
527 \r
528                 xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueType );\r
529                 prvInitialiseMutex( ( Queue_t * ) xNewQueue );\r
530 \r
531                 return xNewQueue;\r
532         }\r
533 \r
534 #endif /* configUSE_MUTEXES */\r
535 /*-----------------------------------------------------------*/\r
536 \r
537 #if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) )\r
538 \r
539         TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore )\r
540         {\r
541         TaskHandle_t pxReturn;\r
542         Queue_t * const pxSemaphore = ( Queue_t * ) xSemaphore;\r
543 \r
544                 /* This function is called by xSemaphoreGetMutexHolder(), and should not\r
545                 be called directly.  Note:  This is a good way of determining if the\r
546                 calling task is the mutex holder, but not a good way of determining the\r
547                 identity of the mutex holder, as the holder may change between the\r
548                 following critical section exiting and the function returning. */\r
549                 taskENTER_CRITICAL();\r
550                 {\r
551                         if( pxSemaphore->uxQueueType == queueQUEUE_IS_MUTEX )\r
552                         {\r
553                                 pxReturn = pxSemaphore->u.xSemaphore.xMutexHolder;\r
554                         }\r
555                         else\r
556                         {\r
557                                 pxReturn = NULL;\r
558                         }\r
559                 }\r
560                 taskEXIT_CRITICAL();\r
561 \r
562                 return pxReturn;\r
563         } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */\r
564 \r
565 #endif\r
566 /*-----------------------------------------------------------*/\r
567 \r
568 #if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) )\r
569 \r
570         TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore )\r
571         {\r
572         TaskHandle_t pxReturn;\r
573 \r
574                 configASSERT( xSemaphore );\r
575 \r
576                 /* Mutexes cannot be used in interrupt service routines, so the mutex\r
577                 holder should not change in an ISR, and therefore a critical section is\r
578                 not required here. */\r
579                 if( ( ( Queue_t * ) xSemaphore )->uxQueueType == queueQUEUE_IS_MUTEX )\r
580                 {\r
581                         pxReturn = ( ( Queue_t * ) xSemaphore )->u.xSemaphore.xMutexHolder;\r
582                 }\r
583                 else\r
584                 {\r
585                         pxReturn = NULL;\r
586                 }\r
587 \r
588                 return pxReturn;\r
589         } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */\r
590 \r
591 #endif\r
592 /*-----------------------------------------------------------*/\r
593 \r
594 #if ( configUSE_RECURSIVE_MUTEXES == 1 )\r
595 \r
596         BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex )\r
597         {\r
598         BaseType_t xReturn;\r
599         Queue_t * const pxMutex = ( Queue_t * ) xMutex;\r
600 \r
601                 configASSERT( pxMutex );\r
602 \r
603                 /* If this is the task that holds the mutex then xMutexHolder will not\r
604                 change outside of this task.  If this task does not hold the mutex then\r
605                 pxMutexHolder can never coincidentally equal the tasks handle, and as\r
606                 this is the only condition we are interested in it does not matter if\r
607                 pxMutexHolder is accessed simultaneously by another task.  Therefore no\r
608                 mutual exclusion is required to test the pxMutexHolder variable. */\r
609                 if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() )\r
610                 {\r
611                         traceGIVE_MUTEX_RECURSIVE( pxMutex );\r
612 \r
613                         /* uxRecursiveCallCount cannot be zero if xMutexHolder is equal to\r
614                         the task handle, therefore no underflow check is required.  Also,\r
615                         uxRecursiveCallCount is only modified by the mutex holder, and as\r
616                         there can only be one, no mutual exclusion is required to modify the\r
617                         uxRecursiveCallCount member. */\r
618                         ( pxMutex->u.xSemaphore.uxRecursiveCallCount )--;\r
619 \r
620                         /* Has the recursive call count unwound to 0? */\r
621                         if( pxMutex->u.xSemaphore.uxRecursiveCallCount == ( UBaseType_t ) 0 )\r
622                         {\r
623                                 /* Return the mutex.  This will automatically unblock any other\r
624                                 task that might be waiting to access the mutex. */\r
625                                 ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK );\r
626                         }\r
627                         else\r
628                         {\r
629                                 mtCOVERAGE_TEST_MARKER();\r
630                         }\r
631 \r
632                         xReturn = pdPASS;\r
633                 }\r
634                 else\r
635                 {\r
636                         /* The mutex cannot be given because the calling task is not the\r
637                         holder. */\r
638                         xReturn = pdFAIL;\r
639 \r
640                         traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex );\r
641                 }\r
642 \r
643                 return xReturn;\r
644         }\r
645 \r
646 #endif /* configUSE_RECURSIVE_MUTEXES */\r
647 /*-----------------------------------------------------------*/\r
648 \r
649 #if ( configUSE_RECURSIVE_MUTEXES == 1 )\r
650 \r
651         BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait )\r
652         {\r
653         BaseType_t xReturn;\r
654         Queue_t * const pxMutex = ( Queue_t * ) xMutex;\r
655 \r
656                 configASSERT( pxMutex );\r
657 \r
658                 /* Comments regarding mutual exclusion as per those within\r
659                 xQueueGiveMutexRecursive(). */\r
660 \r
661                 traceTAKE_MUTEX_RECURSIVE( pxMutex );\r
662 \r
663                 if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() )\r
664                 {\r
665                         ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++;\r
666                         xReturn = pdPASS;\r
667                 }\r
668                 else\r
669                 {\r
670                         xReturn = xQueueSemaphoreTake( pxMutex, xTicksToWait );\r
671 \r
672                         /* pdPASS will only be returned if the mutex was successfully\r
673                         obtained.  The calling task may have entered the Blocked state\r
674                         before reaching here. */\r
675                         if( xReturn != pdFAIL )\r
676                         {\r
677                                 ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++;\r
678                         }\r
679                         else\r
680                         {\r
681                                 traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex );\r
682                         }\r
683                 }\r
684 \r
685                 return xReturn;\r
686         }\r
687 \r
688 #endif /* configUSE_RECURSIVE_MUTEXES */\r
689 /*-----------------------------------------------------------*/\r
690 \r
691 #if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )\r
692 \r
693         QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue )\r
694         {\r
695         QueueHandle_t xHandle;\r
696 \r
697                 configASSERT( uxMaxCount != 0 );\r
698                 configASSERT( uxInitialCount <= uxMaxCount );\r
699 \r
700                 xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQueue, queueQUEUE_TYPE_COUNTING_SEMAPHORE );\r
701 \r
702                 if( xHandle != NULL )\r
703                 {\r
704                         ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount;\r
705 \r
706                         traceCREATE_COUNTING_SEMAPHORE();\r
707                 }\r
708                 else\r
709                 {\r
710                         traceCREATE_COUNTING_SEMAPHORE_FAILED();\r
711                 }\r
712 \r
713                 return xHandle;\r
714         }\r
715 \r
716 #endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */\r
717 /*-----------------------------------------------------------*/\r
718 \r
719 #if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
720 \r
721         QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount )\r
722         {\r
723         QueueHandle_t xHandle;\r
724 \r
725                 configASSERT( uxMaxCount != 0 );\r
726                 configASSERT( uxInitialCount <= uxMaxCount );\r
727 \r
728                 xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE );\r
729 \r
730                 if( xHandle != NULL )\r
731                 {\r
732                         ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount;\r
733 \r
734                         traceCREATE_COUNTING_SEMAPHORE();\r
735                 }\r
736                 else\r
737                 {\r
738                         traceCREATE_COUNTING_SEMAPHORE_FAILED();\r
739                 }\r
740 \r
741                 return xHandle;\r
742         }\r
743 \r
744 #endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */\r
745 /*-----------------------------------------------------------*/\r
746 \r
747 BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition )\r
748 {\r
749 BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired;\r
750 TimeOut_t xTimeOut;\r
751 Queue_t * const pxQueue = xQueue;\r
752 \r
753         configASSERT( pxQueue );\r
754         configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) );\r
755         configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) );\r
756         #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )\r
757         {\r
758                 configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) );\r
759         }\r
760         #endif\r
761 \r
762 \r
763         /*lint -save -e904 This function relaxes the coding standard somewhat to\r
764         allow return statements within the function itself.  This is done in the\r
765         interest of execution time efficiency. */\r
766         for( ;; )\r
767         {\r
768                 taskENTER_CRITICAL();\r
769                 {\r
770                         /* Is there room on the queue now?  The running task must be the\r
771                         highest priority task wanting to access the queue.  If the head item\r
772                         in the queue is to be overwritten then it does not matter if the\r
773                         queue is full. */\r
774                         if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) )\r
775                         {\r
776                                 traceQUEUE_SEND( pxQueue );\r
777 \r
778                                 #if ( configUSE_QUEUE_SETS == 1 )\r
779                                 {\r
780                                 UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting;\r
781 \r
782                                         xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition );\r
783 \r
784                                         if( pxQueue->pxQueueSetContainer != NULL )\r
785                                         {\r
786                                                 if( ( xCopyPosition == queueOVERWRITE ) && ( uxPreviousMessagesWaiting != ( UBaseType_t ) 0 ) )\r
787                                                 {\r
788                                                         /* Do not notify the queue set as an existing item\r
789                                                         was overwritten in the queue so the number of items\r
790                                                         in the queue has not changed. */\r
791                                                         mtCOVERAGE_TEST_MARKER();\r
792                                                 }\r
793                                                 else if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) != pdFALSE )\r
794                                                 {\r
795                                                         /* The queue is a member of a queue set, and posting\r
796                                                         to the queue set caused a higher priority task to\r
797                                                         unblock. A context switch is required. */\r
798                                                         queueYIELD_IF_USING_PREEMPTION();\r
799                                                 }\r
800                                                 else\r
801                                                 {\r
802                                                         mtCOVERAGE_TEST_MARKER();\r
803                                                 }\r
804                                         }\r
805                                         else\r
806                                         {\r
807                                                 /* If there was a task waiting for data to arrive on the\r
808                                                 queue then unblock it now. */\r
809                                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
810                                                 {\r
811                                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
812                                                         {\r
813                                                                 /* The unblocked task has a priority higher than\r
814                                                                 our own so yield immediately.  Yes it is ok to\r
815                                                                 do this from within the critical section - the\r
816                                                                 kernel takes care of that. */\r
817                                                                 queueYIELD_IF_USING_PREEMPTION();\r
818                                                         }\r
819                                                         else\r
820                                                         {\r
821                                                                 mtCOVERAGE_TEST_MARKER();\r
822                                                         }\r
823                                                 }\r
824                                                 else if( xYieldRequired != pdFALSE )\r
825                                                 {\r
826                                                         /* This path is a special case that will only get\r
827                                                         executed if the task was holding multiple mutexes\r
828                                                         and the mutexes were given back in an order that is\r
829                                                         different to that in which they were taken. */\r
830                                                         queueYIELD_IF_USING_PREEMPTION();\r
831                                                 }\r
832                                                 else\r
833                                                 {\r
834                                                         mtCOVERAGE_TEST_MARKER();\r
835                                                 }\r
836                                         }\r
837                                 }\r
838                                 #else /* configUSE_QUEUE_SETS */\r
839                                 {\r
840                                         xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition );\r
841 \r
842                                         /* If there was a task waiting for data to arrive on the\r
843                                         queue then unblock it now. */\r
844                                         if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
845                                         {\r
846                                                 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
847                                                 {\r
848                                                         /* The unblocked task has a priority higher than\r
849                                                         our own so yield immediately.  Yes it is ok to do\r
850                                                         this from within the critical section - the kernel\r
851                                                         takes care of that. */\r
852                                                         queueYIELD_IF_USING_PREEMPTION();\r
853                                                 }\r
854                                                 else\r
855                                                 {\r
856                                                         mtCOVERAGE_TEST_MARKER();\r
857                                                 }\r
858                                         }\r
859                                         else if( xYieldRequired != pdFALSE )\r
860                                         {\r
861                                                 /* This path is a special case that will only get\r
862                                                 executed if the task was holding multiple mutexes and\r
863                                                 the mutexes were given back in an order that is\r
864                                                 different to that in which they were taken. */\r
865                                                 queueYIELD_IF_USING_PREEMPTION();\r
866                                         }\r
867                                         else\r
868                                         {\r
869                                                 mtCOVERAGE_TEST_MARKER();\r
870                                         }\r
871                                 }\r
872                                 #endif /* configUSE_QUEUE_SETS */\r
873 \r
874                                 taskEXIT_CRITICAL();\r
875                                 return pdPASS;\r
876                         }\r
877                         else\r
878                         {\r
879                                 if( xTicksToWait == ( TickType_t ) 0 )\r
880                                 {\r
881                                         /* The queue was full and no block time is specified (or\r
882                                         the block time has expired) so leave now. */\r
883                                         taskEXIT_CRITICAL();\r
884 \r
885                                         /* Return to the original privilege level before exiting\r
886                                         the function. */\r
887                                         traceQUEUE_SEND_FAILED( pxQueue );\r
888                                         return errQUEUE_FULL;\r
889                                 }\r
890                                 else if( xEntryTimeSet == pdFALSE )\r
891                                 {\r
892                                         /* The queue was full and a block time was specified so\r
893                                         configure the timeout structure. */\r
894                                         vTaskInternalSetTimeOutState( &xTimeOut );\r
895                                         xEntryTimeSet = pdTRUE;\r
896                                 }\r
897                                 else\r
898                                 {\r
899                                         /* Entry time was already set. */\r
900                                         mtCOVERAGE_TEST_MARKER();\r
901                                 }\r
902                         }\r
903                 }\r
904                 taskEXIT_CRITICAL();\r
905 \r
906                 /* Interrupts and other tasks can send to and receive from the queue\r
907                 now the critical section has been exited. */\r
908 \r
909                 vTaskSuspendAll();\r
910                 prvLockQueue( pxQueue );\r
911 \r
912                 /* Update the timeout state to see if it has expired yet. */\r
913                 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )\r
914                 {\r
915                         if( prvIsQueueFull( pxQueue ) != pdFALSE )\r
916                         {\r
917                                 traceBLOCKING_ON_QUEUE_SEND( pxQueue );\r
918                                 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait );\r
919 \r
920                                 /* Unlocking the queue means queue events can effect the\r
921                                 event list.  It is possible that interrupts occurring now\r
922                                 remove this task from the event list again - but as the\r
923                                 scheduler is suspended the task will go onto the pending\r
924                                 ready last instead of the actual ready list. */\r
925                                 prvUnlockQueue( pxQueue );\r
926 \r
927                                 /* Resuming the scheduler will move tasks from the pending\r
928                                 ready list into the ready list - so it is feasible that this\r
929                                 task is already in a ready list before it yields - in which\r
930                                 case the yield will not cause a context switch unless there\r
931                                 is also a higher priority task in the pending ready list. */\r
932                                 if( xTaskResumeAll() == pdFALSE )\r
933                                 {\r
934                                         portYIELD_WITHIN_API();\r
935                                 }\r
936                         }\r
937                         else\r
938                         {\r
939                                 /* Try again. */\r
940                                 prvUnlockQueue( pxQueue );\r
941                                 ( void ) xTaskResumeAll();\r
942                         }\r
943                 }\r
944                 else\r
945                 {\r
946                         /* The timeout has expired. */\r
947                         prvUnlockQueue( pxQueue );\r
948                         ( void ) xTaskResumeAll();\r
949 \r
950                         traceQUEUE_SEND_FAILED( pxQueue );\r
951                         return errQUEUE_FULL;\r
952                 }\r
953         } /*lint -restore */\r
954 }\r
955 /*-----------------------------------------------------------*/\r
956 \r
957 BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition )\r
958 {\r
959 BaseType_t xReturn;\r
960 UBaseType_t uxSavedInterruptStatus;\r
961 Queue_t * const pxQueue = xQueue;\r
962 \r
963         configASSERT( pxQueue );\r
964         configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) );\r
965         configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) );\r
966 \r
967         /* RTOS ports that support interrupt nesting have the concept of a maximum\r
968         system call (or maximum API call) interrupt priority.  Interrupts that are\r
969         above the maximum system call priority are kept permanently enabled, even\r
970         when the RTOS kernel is in a critical section, but cannot make any calls to\r
971         FreeRTOS API functions.  If configASSERT() is defined in FreeRTOSConfig.h\r
972         then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion\r
973         failure if a FreeRTOS API function is called from an interrupt that has been\r
974         assigned a priority above the configured maximum system call priority.\r
975         Only FreeRTOS functions that end in FromISR can be called from interrupts\r
976         that have been assigned a priority at or (logically) below the maximum\r
977         system call     interrupt priority.  FreeRTOS maintains a separate interrupt\r
978         safe API to ensure interrupt entry is as fast and as simple as possible.\r
979         More information (albeit Cortex-M specific) is provided on the following\r
980         link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */\r
981         portASSERT_IF_INTERRUPT_PRIORITY_INVALID();\r
982 \r
983         /* Similar to xQueueGenericSend, except without blocking if there is no room\r
984         in the queue.  Also don't directly wake a task that was blocked on a queue\r
985         read, instead return a flag to say whether a context switch is required or\r
986         not (i.e. has a task with a higher priority than us been woken by this\r
987         post). */\r
988         uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();\r
989         {\r
990                 if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) )\r
991                 {\r
992                         const int8_t cTxLock = pxQueue->cTxLock;\r
993 \r
994                         traceQUEUE_SEND_FROM_ISR( pxQueue );\r
995 \r
996                         /* Semaphores use xQueueGiveFromISR(), so pxQueue will not be a\r
997                         semaphore or mutex.  That means prvCopyDataToQueue() cannot result\r
998                         in a task disinheriting a priority and prvCopyDataToQueue() can be\r
999                         called here even though the disinherit function does not check if\r
1000                         the scheduler is suspended before accessing the ready lists. */\r
1001                         ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition );\r
1002 \r
1003                         /* The event list is not altered if the queue is locked.  This will\r
1004                         be done when the queue is unlocked later. */\r
1005                         if( cTxLock == queueUNLOCKED )\r
1006                         {\r
1007                                 #if ( configUSE_QUEUE_SETS == 1 )\r
1008                                 {\r
1009                                         if( pxQueue->pxQueueSetContainer != NULL )\r
1010                                         {\r
1011                                                 if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) != pdFALSE )\r
1012                                                 {\r
1013                                                         /* The queue is a member of a queue set, and posting\r
1014                                                         to the queue set caused a higher priority task to\r
1015                                                         unblock.  A context switch is required. */\r
1016                                                         if( pxHigherPriorityTaskWoken != NULL )\r
1017                                                         {\r
1018                                                                 *pxHigherPriorityTaskWoken = pdTRUE;\r
1019                                                         }\r
1020                                                         else\r
1021                                                         {\r
1022                                                                 mtCOVERAGE_TEST_MARKER();\r
1023                                                         }\r
1024                                                 }\r
1025                                                 else\r
1026                                                 {\r
1027                                                         mtCOVERAGE_TEST_MARKER();\r
1028                                                 }\r
1029                                         }\r
1030                                         else\r
1031                                         {\r
1032                                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
1033                                                 {\r
1034                                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
1035                                                         {\r
1036                                                                 /* The task waiting has a higher priority so\r
1037                                                                 record that a context switch is required. */\r
1038                                                                 if( pxHigherPriorityTaskWoken != NULL )\r
1039                                                                 {\r
1040                                                                         *pxHigherPriorityTaskWoken = pdTRUE;\r
1041                                                                 }\r
1042                                                                 else\r
1043                                                                 {\r
1044                                                                         mtCOVERAGE_TEST_MARKER();\r
1045                                                                 }\r
1046                                                         }\r
1047                                                         else\r
1048                                                         {\r
1049                                                                 mtCOVERAGE_TEST_MARKER();\r
1050                                                         }\r
1051                                                 }\r
1052                                                 else\r
1053                                                 {\r
1054                                                         mtCOVERAGE_TEST_MARKER();\r
1055                                                 }\r
1056                                         }\r
1057                                 }\r
1058                                 #else /* configUSE_QUEUE_SETS */\r
1059                                 {\r
1060                                         if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
1061                                         {\r
1062                                                 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
1063                                                 {\r
1064                                                         /* The task waiting has a higher priority so record that a\r
1065                                                         context switch is required. */\r
1066                                                         if( pxHigherPriorityTaskWoken != NULL )\r
1067                                                         {\r
1068                                                                 *pxHigherPriorityTaskWoken = pdTRUE;\r
1069                                                         }\r
1070                                                         else\r
1071                                                         {\r
1072                                                                 mtCOVERAGE_TEST_MARKER();\r
1073                                                         }\r
1074                                                 }\r
1075                                                 else\r
1076                                                 {\r
1077                                                         mtCOVERAGE_TEST_MARKER();\r
1078                                                 }\r
1079                                         }\r
1080                                         else\r
1081                                         {\r
1082                                                 mtCOVERAGE_TEST_MARKER();\r
1083                                         }\r
1084                                 }\r
1085                                 #endif /* configUSE_QUEUE_SETS */\r
1086                         }\r
1087                         else\r
1088                         {\r
1089                                 /* Increment the lock count so the task that unlocks the queue\r
1090                                 knows that data was posted while it was locked. */\r
1091                                 pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 );\r
1092                         }\r
1093 \r
1094                         xReturn = pdPASS;\r
1095                 }\r
1096                 else\r
1097                 {\r
1098                         traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue );\r
1099                         xReturn = errQUEUE_FULL;\r
1100                 }\r
1101         }\r
1102         portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
1103 \r
1104         return xReturn;\r
1105 }\r
1106 /*-----------------------------------------------------------*/\r
1107 \r
1108 BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken )\r
1109 {\r
1110 BaseType_t xReturn;\r
1111 UBaseType_t uxSavedInterruptStatus;\r
1112 Queue_t * const pxQueue = xQueue;\r
1113 \r
1114         /* Similar to xQueueGenericSendFromISR() but used with semaphores where the\r
1115         item size is 0.  Don't directly wake a task that was blocked on a queue\r
1116         read, instead return a flag to say whether a context switch is required or\r
1117         not (i.e. has a task with a higher priority than us been woken by this\r
1118         post). */\r
1119 \r
1120         configASSERT( pxQueue );\r
1121 \r
1122         /* xQueueGenericSendFromISR() should be used instead of xQueueGiveFromISR()\r
1123         if the item size is not 0. */\r
1124         configASSERT( pxQueue->uxItemSize == 0 );\r
1125 \r
1126         /* Normally a mutex would not be given from an interrupt, especially if\r
1127         there is a mutex holder, as priority inheritance makes no sense for an\r
1128         interrupts, only tasks. */\r
1129         configASSERT( !( ( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) && ( pxQueue->u.xSemaphore.xMutexHolder != NULL ) ) );\r
1130 \r
1131         /* RTOS ports that support interrupt nesting have the concept of a maximum\r
1132         system call (or maximum API call) interrupt priority.  Interrupts that are\r
1133         above the maximum system call priority are kept permanently enabled, even\r
1134         when the RTOS kernel is in a critical section, but cannot make any calls to\r
1135         FreeRTOS API functions.  If configASSERT() is defined in FreeRTOSConfig.h\r
1136         then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion\r
1137         failure if a FreeRTOS API function is called from an interrupt that has been\r
1138         assigned a priority above the configured maximum system call priority.\r
1139         Only FreeRTOS functions that end in FromISR can be called from interrupts\r
1140         that have been assigned a priority at or (logically) below the maximum\r
1141         system call     interrupt priority.  FreeRTOS maintains a separate interrupt\r
1142         safe API to ensure interrupt entry is as fast and as simple as possible.\r
1143         More information (albeit Cortex-M specific) is provided on the following\r
1144         link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */\r
1145         portASSERT_IF_INTERRUPT_PRIORITY_INVALID();\r
1146 \r
1147         uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();\r
1148         {\r
1149                 const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting;\r
1150 \r
1151                 /* When the queue is used to implement a semaphore no data is ever\r
1152                 moved through the queue but it is still valid to see if the queue 'has\r
1153                 space'. */\r
1154                 if( uxMessagesWaiting < pxQueue->uxLength )\r
1155                 {\r
1156                         const int8_t cTxLock = pxQueue->cTxLock;\r
1157 \r
1158                         traceQUEUE_SEND_FROM_ISR( pxQueue );\r
1159 \r
1160                         /* A task can only have an inherited priority if it is a mutex\r
1161                         holder - and if there is a mutex holder then the mutex cannot be\r
1162                         given from an ISR.  As this is the ISR version of the function it\r
1163                         can be assumed there is no mutex holder and no need to determine if\r
1164                         priority disinheritance is needed.  Simply increase the count of\r
1165                         messages (semaphores) available. */\r
1166                         pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1;\r
1167 \r
1168                         /* The event list is not altered if the queue is locked.  This will\r
1169                         be done when the queue is unlocked later. */\r
1170                         if( cTxLock == queueUNLOCKED )\r
1171                         {\r
1172                                 #if ( configUSE_QUEUE_SETS == 1 )\r
1173                                 {\r
1174                                         if( pxQueue->pxQueueSetContainer != NULL )\r
1175                                         {\r
1176                                                 if( prvNotifyQueueSetContainer( pxQueue, queueSEND_TO_BACK ) != pdFALSE )\r
1177                                                 {\r
1178                                                         /* The semaphore is a member of a queue set, and\r
1179                                                         posting to the queue set caused a higher priority\r
1180                                                         task to unblock.  A context switch is required. */\r
1181                                                         if( pxHigherPriorityTaskWoken != NULL )\r
1182                                                         {\r
1183                                                                 *pxHigherPriorityTaskWoken = pdTRUE;\r
1184                                                         }\r
1185                                                         else\r
1186                                                         {\r
1187                                                                 mtCOVERAGE_TEST_MARKER();\r
1188                                                         }\r
1189                                                 }\r
1190                                                 else\r
1191                                                 {\r
1192                                                         mtCOVERAGE_TEST_MARKER();\r
1193                                                 }\r
1194                                         }\r
1195                                         else\r
1196                                         {\r
1197                                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
1198                                                 {\r
1199                                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
1200                                                         {\r
1201                                                                 /* The task waiting has a higher priority so\r
1202                                                                 record that a context switch is required. */\r
1203                                                                 if( pxHigherPriorityTaskWoken != NULL )\r
1204                                                                 {\r
1205                                                                         *pxHigherPriorityTaskWoken = pdTRUE;\r
1206                                                                 }\r
1207                                                                 else\r
1208                                                                 {\r
1209                                                                         mtCOVERAGE_TEST_MARKER();\r
1210                                                                 }\r
1211                                                         }\r
1212                                                         else\r
1213                                                         {\r
1214                                                                 mtCOVERAGE_TEST_MARKER();\r
1215                                                         }\r
1216                                                 }\r
1217                                                 else\r
1218                                                 {\r
1219                                                         mtCOVERAGE_TEST_MARKER();\r
1220                                                 }\r
1221                                         }\r
1222                                 }\r
1223                                 #else /* configUSE_QUEUE_SETS */\r
1224                                 {\r
1225                                         if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
1226                                         {\r
1227                                                 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
1228                                                 {\r
1229                                                         /* The task waiting has a higher priority so record that a\r
1230                                                         context switch is required. */\r
1231                                                         if( pxHigherPriorityTaskWoken != NULL )\r
1232                                                         {\r
1233                                                                 *pxHigherPriorityTaskWoken = pdTRUE;\r
1234                                                         }\r
1235                                                         else\r
1236                                                         {\r
1237                                                                 mtCOVERAGE_TEST_MARKER();\r
1238                                                         }\r
1239                                                 }\r
1240                                                 else\r
1241                                                 {\r
1242                                                         mtCOVERAGE_TEST_MARKER();\r
1243                                                 }\r
1244                                         }\r
1245                                         else\r
1246                                         {\r
1247                                                 mtCOVERAGE_TEST_MARKER();\r
1248                                         }\r
1249                                 }\r
1250                                 #endif /* configUSE_QUEUE_SETS */\r
1251                         }\r
1252                         else\r
1253                         {\r
1254                                 /* Increment the lock count so the task that unlocks the queue\r
1255                                 knows that data was posted while it was locked. */\r
1256                                 pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 );\r
1257                         }\r
1258 \r
1259                         xReturn = pdPASS;\r
1260                 }\r
1261                 else\r
1262                 {\r
1263                         traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue );\r
1264                         xReturn = errQUEUE_FULL;\r
1265                 }\r
1266         }\r
1267         portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
1268 \r
1269         return xReturn;\r
1270 }\r
1271 /*-----------------------------------------------------------*/\r
1272 \r
1273 BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait )\r
1274 {\r
1275 BaseType_t xEntryTimeSet = pdFALSE;\r
1276 TimeOut_t xTimeOut;\r
1277 Queue_t * const pxQueue = xQueue;\r
1278 \r
1279         /* Check the pointer is not NULL. */\r
1280         configASSERT( ( pxQueue ) );\r
1281 \r
1282         /* The buffer into which data is received can only be NULL if the data size\r
1283         is zero (so no data is copied into the buffer. */\r
1284         configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) );\r
1285 \r
1286         /* Cannot block if the scheduler is suspended. */\r
1287         #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )\r
1288         {\r
1289                 configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) );\r
1290         }\r
1291         #endif\r
1292 \r
1293 \r
1294         /*lint -save -e904  This function relaxes the coding standard somewhat to\r
1295         allow return statements within the function itself.  This is done in the\r
1296         interest of execution time efficiency. */\r
1297         for( ;; )\r
1298         {\r
1299                 taskENTER_CRITICAL();\r
1300                 {\r
1301                         const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting;\r
1302 \r
1303                         /* Is there data in the queue now?  To be running the calling task\r
1304                         must be the highest priority task wanting to access the queue. */\r
1305                         if( uxMessagesWaiting > ( UBaseType_t ) 0 )\r
1306                         {\r
1307                                 /* Data available, remove one item. */\r
1308                                 prvCopyDataFromQueue( pxQueue, pvBuffer );\r
1309                                 traceQUEUE_RECEIVE( pxQueue );\r
1310                                 pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1;\r
1311 \r
1312                                 /* There is now space in the queue, were any tasks waiting to\r
1313                                 post to the queue?  If so, unblock the highest priority waiting\r
1314                                 task. */\r
1315                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
1316                                 {\r
1317                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
1318                                         {\r
1319                                                 queueYIELD_IF_USING_PREEMPTION();\r
1320                                         }\r
1321                                         else\r
1322                                         {\r
1323                                                 mtCOVERAGE_TEST_MARKER();\r
1324                                         }\r
1325                                 }\r
1326                                 else\r
1327                                 {\r
1328                                         mtCOVERAGE_TEST_MARKER();\r
1329                                 }\r
1330 \r
1331                                 taskEXIT_CRITICAL();\r
1332                                 return pdPASS;\r
1333                         }\r
1334                         else\r
1335                         {\r
1336                                 if( xTicksToWait == ( TickType_t ) 0 )\r
1337                                 {\r
1338                                         /* The queue was empty and no block time is specified (or\r
1339                                         the block time has expired) so leave now. */\r
1340                                         taskEXIT_CRITICAL();\r
1341                                         traceQUEUE_RECEIVE_FAILED( pxQueue );\r
1342                                         return errQUEUE_EMPTY;\r
1343                                 }\r
1344                                 else if( xEntryTimeSet == pdFALSE )\r
1345                                 {\r
1346                                         /* The queue was empty and a block time was specified so\r
1347                                         configure the timeout structure. */\r
1348                                         vTaskInternalSetTimeOutState( &xTimeOut );\r
1349                                         xEntryTimeSet = pdTRUE;\r
1350                                 }\r
1351                                 else\r
1352                                 {\r
1353                                         /* Entry time was already set. */\r
1354                                         mtCOVERAGE_TEST_MARKER();\r
1355                                 }\r
1356                         }\r
1357                 }\r
1358                 taskEXIT_CRITICAL();\r
1359 \r
1360                 /* Interrupts and other tasks can send to and receive from the queue\r
1361                 now the critical section has been exited. */\r
1362 \r
1363                 vTaskSuspendAll();\r
1364                 prvLockQueue( pxQueue );\r
1365 \r
1366                 /* Update the timeout state to see if it has expired yet. */\r
1367                 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )\r
1368                 {\r
1369                         /* The timeout has not expired.  If the queue is still empty place\r
1370                         the task on the list of tasks waiting to receive from the queue. */\r
1371                         if( prvIsQueueEmpty( pxQueue ) != pdFALSE )\r
1372                         {\r
1373                                 traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue );\r
1374                                 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait );\r
1375                                 prvUnlockQueue( pxQueue );\r
1376                                 if( xTaskResumeAll() == pdFALSE )\r
1377                                 {\r
1378                                         portYIELD_WITHIN_API();\r
1379                                 }\r
1380                                 else\r
1381                                 {\r
1382                                         mtCOVERAGE_TEST_MARKER();\r
1383                                 }\r
1384                         }\r
1385                         else\r
1386                         {\r
1387                                 /* The queue contains data again.  Loop back to try and read the\r
1388                                 data. */\r
1389                                 prvUnlockQueue( pxQueue );\r
1390                                 ( void ) xTaskResumeAll();\r
1391                         }\r
1392                 }\r
1393                 else\r
1394                 {\r
1395                         /* Timed out.  If there is no data in the queue exit, otherwise loop\r
1396                         back and attempt to read the data. */\r
1397                         prvUnlockQueue( pxQueue );\r
1398                         ( void ) xTaskResumeAll();\r
1399 \r
1400                         if( prvIsQueueEmpty( pxQueue ) != pdFALSE )\r
1401                         {\r
1402                                 traceQUEUE_RECEIVE_FAILED( pxQueue );\r
1403                                 return errQUEUE_EMPTY;\r
1404                         }\r
1405                         else\r
1406                         {\r
1407                                 mtCOVERAGE_TEST_MARKER();\r
1408                         }\r
1409                 }\r
1410         } /*lint -restore */\r
1411 }\r
1412 /*-----------------------------------------------------------*/\r
1413 \r
1414 BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait )\r
1415 {\r
1416 BaseType_t xEntryTimeSet = pdFALSE;\r
1417 TimeOut_t xTimeOut;\r
1418 Queue_t * const pxQueue = xQueue;\r
1419 \r
1420 #if( configUSE_MUTEXES == 1 )\r
1421         BaseType_t xInheritanceOccurred = pdFALSE;\r
1422 #endif\r
1423 \r
1424         /* Check the queue pointer is not NULL. */\r
1425         configASSERT( ( pxQueue ) );\r
1426 \r
1427         /* Check this really is a semaphore, in which case the item size will be\r
1428         0. */\r
1429         configASSERT( pxQueue->uxItemSize == 0 );\r
1430 \r
1431         /* Cannot block if the scheduler is suspended. */\r
1432         #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )\r
1433         {\r
1434                 configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) );\r
1435         }\r
1436         #endif\r
1437 \r
1438 \r
1439         /*lint -save -e904 This function relaxes the coding standard somewhat to allow return\r
1440         statements within the function itself.  This is done in the interest\r
1441         of execution time efficiency. */\r
1442         for( ;; )\r
1443         {\r
1444                 taskENTER_CRITICAL();\r
1445                 {\r
1446                         /* Semaphores are queues with an item size of 0, and where the\r
1447                         number of messages in the queue is the semaphore's count value. */\r
1448                         const UBaseType_t uxSemaphoreCount = pxQueue->uxMessagesWaiting;\r
1449 \r
1450                         /* Is there data in the queue now?  To be running the calling task\r
1451                         must be the highest priority task wanting to access the queue. */\r
1452                         if( uxSemaphoreCount > ( UBaseType_t ) 0 )\r
1453                         {\r
1454                                 traceQUEUE_RECEIVE( pxQueue );\r
1455 \r
1456                                 /* Semaphores are queues with a data size of zero and where the\r
1457                                 messages waiting is the semaphore's count.  Reduce the count. */\r
1458                                 pxQueue->uxMessagesWaiting = uxSemaphoreCount - ( UBaseType_t ) 1;\r
1459 \r
1460                                 #if ( configUSE_MUTEXES == 1 )\r
1461                                 {\r
1462                                         if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )\r
1463                                         {\r
1464                                                 /* Record the information required to implement\r
1465                                                 priority inheritance should it become necessary. */\r
1466                                                 pxQueue->u.xSemaphore.xMutexHolder = pvTaskIncrementMutexHeldCount();\r
1467                                         }\r
1468                                         else\r
1469                                         {\r
1470                                                 mtCOVERAGE_TEST_MARKER();\r
1471                                         }\r
1472                                 }\r
1473                                 #endif /* configUSE_MUTEXES */\r
1474 \r
1475                                 /* Check to see if other tasks are blocked waiting to give the\r
1476                                 semaphore, and if so, unblock the highest priority such task. */\r
1477                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
1478                                 {\r
1479                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
1480                                         {\r
1481                                                 queueYIELD_IF_USING_PREEMPTION();\r
1482                                         }\r
1483                                         else\r
1484                                         {\r
1485                                                 mtCOVERAGE_TEST_MARKER();\r
1486                                         }\r
1487                                 }\r
1488                                 else\r
1489                                 {\r
1490                                         mtCOVERAGE_TEST_MARKER();\r
1491                                 }\r
1492 \r
1493                                 taskEXIT_CRITICAL();\r
1494                                 return pdPASS;\r
1495                         }\r
1496                         else\r
1497                         {\r
1498                                 if( xTicksToWait == ( TickType_t ) 0 )\r
1499                                 {\r
1500                                         /* For inheritance to have occurred there must have been an\r
1501                                         initial timeout, and an adjusted timeout cannot become 0, as\r
1502                                         if it were 0 the function would have exited. */\r
1503                                         #if( configUSE_MUTEXES == 1 )\r
1504                                         {\r
1505                                                 configASSERT( xInheritanceOccurred == pdFALSE );\r
1506                                         }\r
1507                                         #endif /* configUSE_MUTEXES */\r
1508 \r
1509                                         /* The semaphore count was 0 and no block time is specified\r
1510                                         (or the block time has expired) so exit now. */\r
1511                                         taskEXIT_CRITICAL();\r
1512                                         traceQUEUE_RECEIVE_FAILED( pxQueue );\r
1513                                         return errQUEUE_EMPTY;\r
1514                                 }\r
1515                                 else if( xEntryTimeSet == pdFALSE )\r
1516                                 {\r
1517                                         /* The semaphore count was 0 and a block time was specified\r
1518                                         so configure the timeout structure ready to block. */\r
1519                                         vTaskInternalSetTimeOutState( &xTimeOut );\r
1520                                         xEntryTimeSet = pdTRUE;\r
1521                                 }\r
1522                                 else\r
1523                                 {\r
1524                                         /* Entry time was already set. */\r
1525                                         mtCOVERAGE_TEST_MARKER();\r
1526                                 }\r
1527                         }\r
1528                 }\r
1529                 taskEXIT_CRITICAL();\r
1530 \r
1531                 /* Interrupts and other tasks can give to and take from the semaphore\r
1532                 now the critical section has been exited. */\r
1533 \r
1534                 vTaskSuspendAll();\r
1535                 prvLockQueue( pxQueue );\r
1536 \r
1537                 /* Update the timeout state to see if it has expired yet. */\r
1538                 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )\r
1539                 {\r
1540                         /* A block time is specified and not expired.  If the semaphore\r
1541                         count is 0 then enter the Blocked state to wait for a semaphore to\r
1542                         become available.  As semaphores are implemented with queues the\r
1543                         queue being empty is equivalent to the semaphore count being 0. */\r
1544                         if( prvIsQueueEmpty( pxQueue ) != pdFALSE )\r
1545                         {\r
1546                                 traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue );\r
1547 \r
1548                                 #if ( configUSE_MUTEXES == 1 )\r
1549                                 {\r
1550                                         if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )\r
1551                                         {\r
1552                                                 taskENTER_CRITICAL();\r
1553                                                 {\r
1554                                                         xInheritanceOccurred = xTaskPriorityInherit( pxQueue->u.xSemaphore.xMutexHolder );\r
1555                                                 }\r
1556                                                 taskEXIT_CRITICAL();\r
1557                                         }\r
1558                                         else\r
1559                                         {\r
1560                                                 mtCOVERAGE_TEST_MARKER();\r
1561                                         }\r
1562                                 }\r
1563                                 #endif\r
1564 \r
1565                                 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait );\r
1566                                 prvUnlockQueue( pxQueue );\r
1567                                 if( xTaskResumeAll() == pdFALSE )\r
1568                                 {\r
1569                                         portYIELD_WITHIN_API();\r
1570                                 }\r
1571                                 else\r
1572                                 {\r
1573                                         mtCOVERAGE_TEST_MARKER();\r
1574                                 }\r
1575                         }\r
1576                         else\r
1577                         {\r
1578                                 /* There was no timeout and the semaphore count was not 0, so\r
1579                                 attempt to take the semaphore again. */\r
1580                                 prvUnlockQueue( pxQueue );\r
1581                                 ( void ) xTaskResumeAll();\r
1582                         }\r
1583                 }\r
1584                 else\r
1585                 {\r
1586                         /* Timed out. */\r
1587                         prvUnlockQueue( pxQueue );\r
1588                         ( void ) xTaskResumeAll();\r
1589 \r
1590                         /* If the semaphore count is 0 exit now as the timeout has\r
1591                         expired.  Otherwise return to attempt to take the semaphore that is\r
1592                         known to be available.  As semaphores are implemented by queues the\r
1593                         queue being empty is equivalent to the semaphore count being 0. */\r
1594                         if( prvIsQueueEmpty( pxQueue ) != pdFALSE )\r
1595                         {\r
1596                                 #if ( configUSE_MUTEXES == 1 )\r
1597                                 {\r
1598                                         /* xInheritanceOccurred could only have be set if\r
1599                                         pxQueue->uxQueueType == queueQUEUE_IS_MUTEX so no need to\r
1600                                         test the mutex type again to check it is actually a mutex. */\r
1601                                         if( xInheritanceOccurred != pdFALSE )\r
1602                                         {\r
1603                                                 taskENTER_CRITICAL();\r
1604                                                 {\r
1605                                                         UBaseType_t uxHighestWaitingPriority;\r
1606 \r
1607                                                         /* This task blocking on the mutex caused another\r
1608                                                         task to inherit this task's priority.  Now this task\r
1609                                                         has timed out the priority should be disinherited\r
1610                                                         again, but only as low as the next highest priority\r
1611                                                         task that is waiting for the same mutex. */\r
1612                                                         uxHighestWaitingPriority = prvGetDisinheritPriorityAfterTimeout( pxQueue );\r
1613                                                         vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority );\r
1614                                                 }\r
1615                                                 taskEXIT_CRITICAL();\r
1616                                         }\r
1617                                 }\r
1618                                 #endif /* configUSE_MUTEXES */\r
1619 \r
1620                                 traceQUEUE_RECEIVE_FAILED( pxQueue );\r
1621                                 return errQUEUE_EMPTY;\r
1622                         }\r
1623                         else\r
1624                         {\r
1625                                 mtCOVERAGE_TEST_MARKER();\r
1626                         }\r
1627                 }\r
1628         } /*lint -restore */\r
1629 }\r
1630 /*-----------------------------------------------------------*/\r
1631 \r
1632 BaseType_t xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait )\r
1633 {\r
1634 BaseType_t xEntryTimeSet = pdFALSE;\r
1635 TimeOut_t xTimeOut;\r
1636 int8_t *pcOriginalReadPosition;\r
1637 Queue_t * const pxQueue = xQueue;\r
1638 \r
1639         /* Check the pointer is not NULL. */\r
1640         configASSERT( ( pxQueue ) );\r
1641 \r
1642         /* The buffer into which data is received can only be NULL if the data size\r
1643         is zero (so no data is copied into the buffer. */\r
1644         configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) );\r
1645 \r
1646         /* Cannot block if the scheduler is suspended. */\r
1647         #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )\r
1648         {\r
1649                 configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) );\r
1650         }\r
1651         #endif\r
1652 \r
1653 \r
1654         /*lint -save -e904  This function relaxes the coding standard somewhat to\r
1655         allow return statements within the function itself.  This is done in the\r
1656         interest of execution time efficiency. */\r
1657         for( ;; )\r
1658         {\r
1659                 taskENTER_CRITICAL();\r
1660                 {\r
1661                         const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting;\r
1662 \r
1663                         /* Is there data in the queue now?  To be running the calling task\r
1664                         must be the highest priority task wanting to access the queue. */\r
1665                         if( uxMessagesWaiting > ( UBaseType_t ) 0 )\r
1666                         {\r
1667                                 /* Remember the read position so it can be reset after the data\r
1668                                 is read from the queue as this function is only peeking the\r
1669                                 data, not removing it. */\r
1670                                 pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom;\r
1671 \r
1672                                 prvCopyDataFromQueue( pxQueue, pvBuffer );\r
1673                                 traceQUEUE_PEEK( pxQueue );\r
1674 \r
1675                                 /* The data is not being removed, so reset the read pointer. */\r
1676                                 pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition;\r
1677 \r
1678                                 /* The data is being left in the queue, so see if there are\r
1679                                 any other tasks waiting for the data. */\r
1680                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
1681                                 {\r
1682                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
1683                                         {\r
1684                                                 /* The task waiting has a higher priority than this task. */\r
1685                                                 queueYIELD_IF_USING_PREEMPTION();\r
1686                                         }\r
1687                                         else\r
1688                                         {\r
1689                                                 mtCOVERAGE_TEST_MARKER();\r
1690                                         }\r
1691                                 }\r
1692                                 else\r
1693                                 {\r
1694                                         mtCOVERAGE_TEST_MARKER();\r
1695                                 }\r
1696 \r
1697                                 taskEXIT_CRITICAL();\r
1698                                 return pdPASS;\r
1699                         }\r
1700                         else\r
1701                         {\r
1702                                 if( xTicksToWait == ( TickType_t ) 0 )\r
1703                                 {\r
1704                                         /* The queue was empty and no block time is specified (or\r
1705                                         the block time has expired) so leave now. */\r
1706                                         taskEXIT_CRITICAL();\r
1707                                         traceQUEUE_PEEK_FAILED( pxQueue );\r
1708                                         return errQUEUE_EMPTY;\r
1709                                 }\r
1710                                 else if( xEntryTimeSet == pdFALSE )\r
1711                                 {\r
1712                                         /* The queue was empty and a block time was specified so\r
1713                                         configure the timeout structure ready to enter the blocked\r
1714                                         state. */\r
1715                                         vTaskInternalSetTimeOutState( &xTimeOut );\r
1716                                         xEntryTimeSet = pdTRUE;\r
1717                                 }\r
1718                                 else\r
1719                                 {\r
1720                                         /* Entry time was already set. */\r
1721                                         mtCOVERAGE_TEST_MARKER();\r
1722                                 }\r
1723                         }\r
1724                 }\r
1725                 taskEXIT_CRITICAL();\r
1726 \r
1727                 /* Interrupts and other tasks can send to and receive from the queue\r
1728                 now the critical section has been exited. */\r
1729 \r
1730                 vTaskSuspendAll();\r
1731                 prvLockQueue( pxQueue );\r
1732 \r
1733                 /* Update the timeout state to see if it has expired yet. */\r
1734                 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )\r
1735                 {\r
1736                         /* Timeout has not expired yet, check to see if there is data in the\r
1737                         queue now, and if not enter the Blocked state to wait for data. */\r
1738                         if( prvIsQueueEmpty( pxQueue ) != pdFALSE )\r
1739                         {\r
1740                                 traceBLOCKING_ON_QUEUE_PEEK( pxQueue );\r
1741                                 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait );\r
1742                                 prvUnlockQueue( pxQueue );\r
1743                                 if( xTaskResumeAll() == pdFALSE )\r
1744                                 {\r
1745                                         portYIELD_WITHIN_API();\r
1746                                 }\r
1747                                 else\r
1748                                 {\r
1749                                         mtCOVERAGE_TEST_MARKER();\r
1750                                 }\r
1751                         }\r
1752                         else\r
1753                         {\r
1754                                 /* There is data in the queue now, so don't enter the blocked\r
1755                                 state, instead return to try and obtain the data. */\r
1756                                 prvUnlockQueue( pxQueue );\r
1757                                 ( void ) xTaskResumeAll();\r
1758                         }\r
1759                 }\r
1760                 else\r
1761                 {\r
1762                         /* The timeout has expired.  If there is still no data in the queue\r
1763                         exit, otherwise go back and try to read the data again. */\r
1764                         prvUnlockQueue( pxQueue );\r
1765                         ( void ) xTaskResumeAll();\r
1766 \r
1767                         if( prvIsQueueEmpty( pxQueue ) != pdFALSE )\r
1768                         {\r
1769                                 traceQUEUE_PEEK_FAILED( pxQueue );\r
1770                                 return errQUEUE_EMPTY;\r
1771                         }\r
1772                         else\r
1773                         {\r
1774                                 mtCOVERAGE_TEST_MARKER();\r
1775                         }\r
1776                 }\r
1777         } /*lint -restore */\r
1778 }\r
1779 /*-----------------------------------------------------------*/\r
1780 \r
1781 BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken )\r
1782 {\r
1783 BaseType_t xReturn;\r
1784 UBaseType_t uxSavedInterruptStatus;\r
1785 Queue_t * const pxQueue = xQueue;\r
1786 \r
1787         configASSERT( pxQueue );\r
1788         configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) );\r
1789 \r
1790         /* RTOS ports that support interrupt nesting have the concept of a maximum\r
1791         system call (or maximum API call) interrupt priority.  Interrupts that are\r
1792         above the maximum system call priority are kept permanently enabled, even\r
1793         when the RTOS kernel is in a critical section, but cannot make any calls to\r
1794         FreeRTOS API functions.  If configASSERT() is defined in FreeRTOSConfig.h\r
1795         then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion\r
1796         failure if a FreeRTOS API function is called from an interrupt that has been\r
1797         assigned a priority above the configured maximum system call priority.\r
1798         Only FreeRTOS functions that end in FromISR can be called from interrupts\r
1799         that have been assigned a priority at or (logically) below the maximum\r
1800         system call     interrupt priority.  FreeRTOS maintains a separate interrupt\r
1801         safe API to ensure interrupt entry is as fast and as simple as possible.\r
1802         More information (albeit Cortex-M specific) is provided on the following\r
1803         link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */\r
1804         portASSERT_IF_INTERRUPT_PRIORITY_INVALID();\r
1805 \r
1806         uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();\r
1807         {\r
1808                 const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting;\r
1809 \r
1810                 /* Cannot block in an ISR, so check there is data available. */\r
1811                 if( uxMessagesWaiting > ( UBaseType_t ) 0 )\r
1812                 {\r
1813                         const int8_t cRxLock = pxQueue->cRxLock;\r
1814 \r
1815                         traceQUEUE_RECEIVE_FROM_ISR( pxQueue );\r
1816 \r
1817                         prvCopyDataFromQueue( pxQueue, pvBuffer );\r
1818                         pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1;\r
1819 \r
1820                         /* If the queue is locked the event list will not be modified.\r
1821                         Instead update the lock count so the task that unlocks the queue\r
1822                         will know that an ISR has removed data while the queue was\r
1823                         locked. */\r
1824                         if( cRxLock == queueUNLOCKED )\r
1825                         {\r
1826                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
1827                                 {\r
1828                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
1829                                         {\r
1830                                                 /* The task waiting has a higher priority than us so\r
1831                                                 force a context switch. */\r
1832                                                 if( pxHigherPriorityTaskWoken != NULL )\r
1833                                                 {\r
1834                                                         *pxHigherPriorityTaskWoken = pdTRUE;\r
1835                                                 }\r
1836                                                 else\r
1837                                                 {\r
1838                                                         mtCOVERAGE_TEST_MARKER();\r
1839                                                 }\r
1840                                         }\r
1841                                         else\r
1842                                         {\r
1843                                                 mtCOVERAGE_TEST_MARKER();\r
1844                                         }\r
1845                                 }\r
1846                                 else\r
1847                                 {\r
1848                                         mtCOVERAGE_TEST_MARKER();\r
1849                                 }\r
1850                         }\r
1851                         else\r
1852                         {\r
1853                                 /* Increment the lock count so the task that unlocks the queue\r
1854                                 knows that data was removed while it was locked. */\r
1855                                 pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 );\r
1856                         }\r
1857 \r
1858                         xReturn = pdPASS;\r
1859                 }\r
1860                 else\r
1861                 {\r
1862                         xReturn = pdFAIL;\r
1863                         traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue );\r
1864                 }\r
1865         }\r
1866         portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
1867 \r
1868         return xReturn;\r
1869 }\r
1870 /*-----------------------------------------------------------*/\r
1871 \r
1872 BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue,  void * const pvBuffer )\r
1873 {\r
1874 BaseType_t xReturn;\r
1875 UBaseType_t uxSavedInterruptStatus;\r
1876 int8_t *pcOriginalReadPosition;\r
1877 Queue_t * const pxQueue = xQueue;\r
1878 \r
1879         configASSERT( pxQueue );\r
1880         configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) );\r
1881         configASSERT( pxQueue->uxItemSize != 0 ); /* Can't peek a semaphore. */\r
1882 \r
1883         /* RTOS ports that support interrupt nesting have the concept of a maximum\r
1884         system call (or maximum API call) interrupt priority.  Interrupts that are\r
1885         above the maximum system call priority are kept permanently enabled, even\r
1886         when the RTOS kernel is in a critical section, but cannot make any calls to\r
1887         FreeRTOS API functions.  If configASSERT() is defined in FreeRTOSConfig.h\r
1888         then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion\r
1889         failure if a FreeRTOS API function is called from an interrupt that has been\r
1890         assigned a priority above the configured maximum system call priority.\r
1891         Only FreeRTOS functions that end in FromISR can be called from interrupts\r
1892         that have been assigned a priority at or (logically) below the maximum\r
1893         system call     interrupt priority.  FreeRTOS maintains a separate interrupt\r
1894         safe API to ensure interrupt entry is as fast and as simple as possible.\r
1895         More information (albeit Cortex-M specific) is provided on the following\r
1896         link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */\r
1897         portASSERT_IF_INTERRUPT_PRIORITY_INVALID();\r
1898 \r
1899         uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();\r
1900         {\r
1901                 /* Cannot block in an ISR, so check there is data available. */\r
1902                 if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 )\r
1903                 {\r
1904                         traceQUEUE_PEEK_FROM_ISR( pxQueue );\r
1905 \r
1906                         /* Remember the read position so it can be reset as nothing is\r
1907                         actually being removed from the queue. */\r
1908                         pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom;\r
1909                         prvCopyDataFromQueue( pxQueue, pvBuffer );\r
1910                         pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition;\r
1911 \r
1912                         xReturn = pdPASS;\r
1913                 }\r
1914                 else\r
1915                 {\r
1916                         xReturn = pdFAIL;\r
1917                         traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue );\r
1918                 }\r
1919         }\r
1920         portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );\r
1921 \r
1922         return xReturn;\r
1923 }\r
1924 /*-----------------------------------------------------------*/\r
1925 \r
1926 UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue )\r
1927 {\r
1928 UBaseType_t uxReturn;\r
1929 \r
1930         configASSERT( xQueue );\r
1931 \r
1932         taskENTER_CRITICAL();\r
1933         {\r
1934                 uxReturn = ( ( Queue_t * ) xQueue )->uxMessagesWaiting;\r
1935         }\r
1936         taskEXIT_CRITICAL();\r
1937 \r
1938         return uxReturn;\r
1939 } /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */\r
1940 /*-----------------------------------------------------------*/\r
1941 \r
1942 UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue )\r
1943 {\r
1944 UBaseType_t uxReturn;\r
1945 Queue_t * const pxQueue = xQueue;\r
1946 \r
1947         configASSERT( pxQueue );\r
1948 \r
1949         taskENTER_CRITICAL();\r
1950         {\r
1951                 uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting;\r
1952         }\r
1953         taskEXIT_CRITICAL();\r
1954 \r
1955         return uxReturn;\r
1956 } /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */\r
1957 /*-----------------------------------------------------------*/\r
1958 \r
1959 UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue )\r
1960 {\r
1961 UBaseType_t uxReturn;\r
1962 Queue_t * const pxQueue = xQueue;\r
1963 \r
1964         configASSERT( pxQueue );\r
1965         uxReturn = pxQueue->uxMessagesWaiting;\r
1966 \r
1967         return uxReturn;\r
1968 } /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */\r
1969 /*-----------------------------------------------------------*/\r
1970 \r
1971 void vQueueDelete( QueueHandle_t xQueue )\r
1972 {\r
1973 Queue_t * const pxQueue = xQueue;\r
1974 \r
1975         configASSERT( pxQueue );\r
1976         traceQUEUE_DELETE( pxQueue );\r
1977 \r
1978         #if ( configQUEUE_REGISTRY_SIZE > 0 )\r
1979         {\r
1980                 vQueueUnregisterQueue( pxQueue );\r
1981         }\r
1982         #endif\r
1983 \r
1984         #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) )\r
1985         {\r
1986                 /* The queue can only have been allocated dynamically - free it\r
1987                 again. */\r
1988                 vPortFree( pxQueue );\r
1989         }\r
1990         #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )\r
1991         {\r
1992                 /* The queue could have been allocated statically or dynamically, so\r
1993                 check before attempting to free the memory. */\r
1994                 if( pxQueue->ucStaticallyAllocated == ( uint8_t ) pdFALSE )\r
1995                 {\r
1996                         vPortFree( pxQueue );\r
1997                 }\r
1998                 else\r
1999                 {\r
2000                         mtCOVERAGE_TEST_MARKER();\r
2001                 }\r
2002         }\r
2003         #else\r
2004         {\r
2005                 /* The queue must have been statically allocated, so is not going to be\r
2006                 deleted.  Avoid compiler warnings about the unused parameter. */\r
2007                 ( void ) pxQueue;\r
2008         }\r
2009         #endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
2010 }\r
2011 /*-----------------------------------------------------------*/\r
2012 \r
2013 #if ( configUSE_TRACE_FACILITY == 1 )\r
2014 \r
2015         UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue )\r
2016         {\r
2017                 return ( ( Queue_t * ) xQueue )->uxQueueNumber;\r
2018         }\r
2019 \r
2020 #endif /* configUSE_TRACE_FACILITY */\r
2021 /*-----------------------------------------------------------*/\r
2022 \r
2023 #if ( configUSE_TRACE_FACILITY == 1 )\r
2024 \r
2025         void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber )\r
2026         {\r
2027                 ( ( Queue_t * ) xQueue )->uxQueueNumber = uxQueueNumber;\r
2028         }\r
2029 \r
2030 #endif /* configUSE_TRACE_FACILITY */\r
2031 /*-----------------------------------------------------------*/\r
2032 \r
2033 #if ( configUSE_TRACE_FACILITY == 1 )\r
2034 \r
2035         uint8_t ucQueueGetQueueType( QueueHandle_t xQueue )\r
2036         {\r
2037                 return ( ( Queue_t * ) xQueue )->ucQueueType;\r
2038         }\r
2039 \r
2040 #endif /* configUSE_TRACE_FACILITY */\r
2041 /*-----------------------------------------------------------*/\r
2042 \r
2043 #if( configUSE_MUTEXES == 1 )\r
2044 \r
2045         static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue )\r
2046         {\r
2047         UBaseType_t uxHighestPriorityOfWaitingTasks;\r
2048 \r
2049                 /* If a task waiting for a mutex causes the mutex holder to inherit a\r
2050                 priority, but the waiting task times out, then the holder should\r
2051                 disinherit the priority - but only down to the highest priority of any\r
2052                 other tasks that are waiting for the same mutex.  For this purpose,\r
2053                 return the priority of the highest priority task that is waiting for the\r
2054                 mutex. */\r
2055                 if( listCURRENT_LIST_LENGTH( &( pxQueue->xTasksWaitingToReceive ) ) > 0U )\r
2056                 {\r
2057                         uxHighestPriorityOfWaitingTasks = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) listGET_ITEM_VALUE_OF_HEAD_ENTRY( &( pxQueue->xTasksWaitingToReceive ) );\r
2058                 }\r
2059                 else\r
2060                 {\r
2061                         uxHighestPriorityOfWaitingTasks = tskIDLE_PRIORITY;\r
2062                 }\r
2063 \r
2064                 return uxHighestPriorityOfWaitingTasks;\r
2065         }\r
2066 \r
2067 #endif /* configUSE_MUTEXES */\r
2068 /*-----------------------------------------------------------*/\r
2069 \r
2070 static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition )\r
2071 {\r
2072 BaseType_t xReturn = pdFALSE;\r
2073 UBaseType_t uxMessagesWaiting;\r
2074 \r
2075         /* This function is called from a critical section. */\r
2076 \r
2077         uxMessagesWaiting = pxQueue->uxMessagesWaiting;\r
2078 \r
2079         if( pxQueue->uxItemSize == ( UBaseType_t ) 0 )\r
2080         {\r
2081                 #if ( configUSE_MUTEXES == 1 )\r
2082                 {\r
2083                         if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )\r
2084                         {\r
2085                                 /* The mutex is no longer being held. */\r
2086                                 xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder );\r
2087                                 pxQueue->u.xSemaphore.xMutexHolder = NULL;\r
2088                         }\r
2089                         else\r
2090                         {\r
2091                                 mtCOVERAGE_TEST_MARKER();\r
2092                         }\r
2093                 }\r
2094                 #endif /* configUSE_MUTEXES */\r
2095         }\r
2096         else if( xPosition == queueSEND_TO_BACK )\r
2097         {\r
2098                 ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0.  Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */\r
2099                 pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */\r
2100                 if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */\r
2101                 {\r
2102                         pxQueue->pcWriteTo = pxQueue->pcHead;\r
2103                 }\r
2104                 else\r
2105                 {\r
2106                         mtCOVERAGE_TEST_MARKER();\r
2107                 }\r
2108         }\r
2109         else\r
2110         {\r
2111                 ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports.  Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes.  Assert checks null pointer only used when length is 0. */\r
2112                 pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize;\r
2113                 if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */\r
2114                 {\r
2115                         pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize );\r
2116                 }\r
2117                 else\r
2118                 {\r
2119                         mtCOVERAGE_TEST_MARKER();\r
2120                 }\r
2121 \r
2122                 if( xPosition == queueOVERWRITE )\r
2123                 {\r
2124                         if( uxMessagesWaiting > ( UBaseType_t ) 0 )\r
2125                         {\r
2126                                 /* An item is not being added but overwritten, so subtract\r
2127                                 one from the recorded number of items in the queue so when\r
2128                                 one is added again below the number of recorded items remains\r
2129                                 correct. */\r
2130                                 --uxMessagesWaiting;\r
2131                         }\r
2132                         else\r
2133                         {\r
2134                                 mtCOVERAGE_TEST_MARKER();\r
2135                         }\r
2136                 }\r
2137                 else\r
2138                 {\r
2139                         mtCOVERAGE_TEST_MARKER();\r
2140                 }\r
2141         }\r
2142 \r
2143         pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1;\r
2144 \r
2145         return xReturn;\r
2146 }\r
2147 /*-----------------------------------------------------------*/\r
2148 \r
2149 static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer )\r
2150 {\r
2151         if( pxQueue->uxItemSize != ( UBaseType_t ) 0 )\r
2152         {\r
2153                 pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */\r
2154                 if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */\r
2155                 {\r
2156                         pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead;\r
2157                 }\r
2158                 else\r
2159                 {\r
2160                         mtCOVERAGE_TEST_MARKER();\r
2161                 }\r
2162                 ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports.  Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0.  Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */\r
2163         }\r
2164 }\r
2165 /*-----------------------------------------------------------*/\r
2166 \r
2167 static void prvUnlockQueue( Queue_t * const pxQueue )\r
2168 {\r
2169         /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. */\r
2170 \r
2171         /* The lock counts contains the number of extra data items placed or\r
2172         removed from the queue while the queue was locked.  When a queue is\r
2173         locked items can be added or removed, but the event lists cannot be\r
2174         updated. */\r
2175         taskENTER_CRITICAL();\r
2176         {\r
2177                 int8_t cTxLock = pxQueue->cTxLock;\r
2178 \r
2179                 /* See if data was added to the queue while it was locked. */\r
2180                 while( cTxLock > queueLOCKED_UNMODIFIED )\r
2181                 {\r
2182                         /* Data was posted while the queue was locked.  Are any tasks\r
2183                         blocked waiting for data to become available? */\r
2184                         #if ( configUSE_QUEUE_SETS == 1 )\r
2185                         {\r
2186                                 if( pxQueue->pxQueueSetContainer != NULL )\r
2187                                 {\r
2188                                         if( prvNotifyQueueSetContainer( pxQueue, queueSEND_TO_BACK ) != pdFALSE )\r
2189                                         {\r
2190                                                 /* The queue is a member of a queue set, and posting to\r
2191                                                 the queue set caused a higher priority task to unblock.\r
2192                                                 A context switch is required. */\r
2193                                                 vTaskMissedYield();\r
2194                                         }\r
2195                                         else\r
2196                                         {\r
2197                                                 mtCOVERAGE_TEST_MARKER();\r
2198                                         }\r
2199                                 }\r
2200                                 else\r
2201                                 {\r
2202                                         /* Tasks that are removed from the event list will get\r
2203                                         added to the pending ready list as the scheduler is still\r
2204                                         suspended. */\r
2205                                         if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
2206                                         {\r
2207                                                 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
2208                                                 {\r
2209                                                         /* The task waiting has a higher priority so record that a\r
2210                                                         context switch is required. */\r
2211                                                         vTaskMissedYield();\r
2212                                                 }\r
2213                                                 else\r
2214                                                 {\r
2215                                                         mtCOVERAGE_TEST_MARKER();\r
2216                                                 }\r
2217                                         }\r
2218                                         else\r
2219                                         {\r
2220                                                 break;\r
2221                                         }\r
2222                                 }\r
2223                         }\r
2224                         #else /* configUSE_QUEUE_SETS */\r
2225                         {\r
2226                                 /* Tasks that are removed from the event list will get added to\r
2227                                 the pending ready list as the scheduler is still suspended. */\r
2228                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
2229                                 {\r
2230                                         if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
2231                                         {\r
2232                                                 /* The task waiting has a higher priority so record that\r
2233                                                 a context switch is required. */\r
2234                                                 vTaskMissedYield();\r
2235                                         }\r
2236                                         else\r
2237                                         {\r
2238                                                 mtCOVERAGE_TEST_MARKER();\r
2239                                         }\r
2240                                 }\r
2241                                 else\r
2242                                 {\r
2243                                         break;\r
2244                                 }\r
2245                         }\r
2246                         #endif /* configUSE_QUEUE_SETS */\r
2247 \r
2248                         --cTxLock;\r
2249                 }\r
2250 \r
2251                 pxQueue->cTxLock = queueUNLOCKED;\r
2252         }\r
2253         taskEXIT_CRITICAL();\r
2254 \r
2255         /* Do the same for the Rx lock. */\r
2256         taskENTER_CRITICAL();\r
2257         {\r
2258                 int8_t cRxLock = pxQueue->cRxLock;\r
2259 \r
2260                 while( cRxLock > queueLOCKED_UNMODIFIED )\r
2261                 {\r
2262                         if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
2263                         {\r
2264                                 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
2265                                 {\r
2266                                         vTaskMissedYield();\r
2267                                 }\r
2268                                 else\r
2269                                 {\r
2270                                         mtCOVERAGE_TEST_MARKER();\r
2271                                 }\r
2272 \r
2273                                 --cRxLock;\r
2274                         }\r
2275                         else\r
2276                         {\r
2277                                 break;\r
2278                         }\r
2279                 }\r
2280 \r
2281                 pxQueue->cRxLock = queueUNLOCKED;\r
2282         }\r
2283         taskEXIT_CRITICAL();\r
2284 }\r
2285 /*-----------------------------------------------------------*/\r
2286 \r
2287 static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue )\r
2288 {\r
2289 BaseType_t xReturn;\r
2290 \r
2291         taskENTER_CRITICAL();\r
2292         {\r
2293                 if( pxQueue->uxMessagesWaiting == ( UBaseType_t )  0 )\r
2294                 {\r
2295                         xReturn = pdTRUE;\r
2296                 }\r
2297                 else\r
2298                 {\r
2299                         xReturn = pdFALSE;\r
2300                 }\r
2301         }\r
2302         taskEXIT_CRITICAL();\r
2303 \r
2304         return xReturn;\r
2305 }\r
2306 /*-----------------------------------------------------------*/\r
2307 \r
2308 BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue )\r
2309 {\r
2310 BaseType_t xReturn;\r
2311 Queue_t * const pxQueue = xQueue;\r
2312 \r
2313         configASSERT( pxQueue );\r
2314         if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 )\r
2315         {\r
2316                 xReturn = pdTRUE;\r
2317         }\r
2318         else\r
2319         {\r
2320                 xReturn = pdFALSE;\r
2321         }\r
2322 \r
2323         return xReturn;\r
2324 } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */\r
2325 /*-----------------------------------------------------------*/\r
2326 \r
2327 static BaseType_t prvIsQueueFull( const Queue_t *pxQueue )\r
2328 {\r
2329 BaseType_t xReturn;\r
2330 \r
2331         taskENTER_CRITICAL();\r
2332         {\r
2333                 if( pxQueue->uxMessagesWaiting == pxQueue->uxLength )\r
2334                 {\r
2335                         xReturn = pdTRUE;\r
2336                 }\r
2337                 else\r
2338                 {\r
2339                         xReturn = pdFALSE;\r
2340                 }\r
2341         }\r
2342         taskEXIT_CRITICAL();\r
2343 \r
2344         return xReturn;\r
2345 }\r
2346 /*-----------------------------------------------------------*/\r
2347 \r
2348 BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue )\r
2349 {\r
2350 BaseType_t xReturn;\r
2351 Queue_t * const pxQueue = xQueue;\r
2352 \r
2353         configASSERT( pxQueue );\r
2354         if( pxQueue->uxMessagesWaiting == pxQueue->uxLength )\r
2355         {\r
2356                 xReturn = pdTRUE;\r
2357         }\r
2358         else\r
2359         {\r
2360                 xReturn = pdFALSE;\r
2361         }\r
2362 \r
2363         return xReturn;\r
2364 } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */\r
2365 /*-----------------------------------------------------------*/\r
2366 \r
2367 #if ( configUSE_CO_ROUTINES == 1 )\r
2368 \r
2369         BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait )\r
2370         {\r
2371         BaseType_t xReturn;\r
2372         Queue_t * const pxQueue = xQueue;\r
2373 \r
2374                 /* If the queue is already full we may have to block.  A critical section\r
2375                 is required to prevent an interrupt removing something from the queue\r
2376                 between the check to see if the queue is full and blocking on the queue. */\r
2377                 portDISABLE_INTERRUPTS();\r
2378                 {\r
2379                         if( prvIsQueueFull( pxQueue ) != pdFALSE )\r
2380                         {\r
2381                                 /* The queue is full - do we want to block or just leave without\r
2382                                 posting? */\r
2383                                 if( xTicksToWait > ( TickType_t ) 0 )\r
2384                                 {\r
2385                                         /* As this is called from a coroutine we cannot block directly, but\r
2386                                         return indicating that we need to block. */\r
2387                                         vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToSend ) );\r
2388                                         portENABLE_INTERRUPTS();\r
2389                                         return errQUEUE_BLOCKED;\r
2390                                 }\r
2391                                 else\r
2392                                 {\r
2393                                         portENABLE_INTERRUPTS();\r
2394                                         return errQUEUE_FULL;\r
2395                                 }\r
2396                         }\r
2397                 }\r
2398                 portENABLE_INTERRUPTS();\r
2399 \r
2400                 portDISABLE_INTERRUPTS();\r
2401                 {\r
2402                         if( pxQueue->uxMessagesWaiting < pxQueue->uxLength )\r
2403                         {\r
2404                                 /* There is room in the queue, copy the data into the queue. */\r
2405                                 prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK );\r
2406                                 xReturn = pdPASS;\r
2407 \r
2408                                 /* Were any co-routines waiting for data to become available? */\r
2409                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
2410                                 {\r
2411                                         /* In this instance the co-routine could be placed directly\r
2412                                         into the ready list as we are within a critical section.\r
2413                                         Instead the same pending ready list mechanism is used as if\r
2414                                         the event were caused from within an interrupt. */\r
2415                                         if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
2416                                         {\r
2417                                                 /* The co-routine waiting has a higher priority so record\r
2418                                                 that a yield might be appropriate. */\r
2419                                                 xReturn = errQUEUE_YIELD;\r
2420                                         }\r
2421                                         else\r
2422                                         {\r
2423                                                 mtCOVERAGE_TEST_MARKER();\r
2424                                         }\r
2425                                 }\r
2426                                 else\r
2427                                 {\r
2428                                         mtCOVERAGE_TEST_MARKER();\r
2429                                 }\r
2430                         }\r
2431                         else\r
2432                         {\r
2433                                 xReturn = errQUEUE_FULL;\r
2434                         }\r
2435                 }\r
2436                 portENABLE_INTERRUPTS();\r
2437 \r
2438                 return xReturn;\r
2439         }\r
2440 \r
2441 #endif /* configUSE_CO_ROUTINES */\r
2442 /*-----------------------------------------------------------*/\r
2443 \r
2444 #if ( configUSE_CO_ROUTINES == 1 )\r
2445 \r
2446         BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait )\r
2447         {\r
2448         BaseType_t xReturn;\r
2449         Queue_t * const pxQueue = xQueue;\r
2450 \r
2451                 /* If the queue is already empty we may have to block.  A critical section\r
2452                 is required to prevent an interrupt adding something to the queue\r
2453                 between the check to see if the queue is empty and blocking on the queue. */\r
2454                 portDISABLE_INTERRUPTS();\r
2455                 {\r
2456                         if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 )\r
2457                         {\r
2458                                 /* There are no messages in the queue, do we want to block or just\r
2459                                 leave with nothing? */\r
2460                                 if( xTicksToWait > ( TickType_t ) 0 )\r
2461                                 {\r
2462                                         /* As this is a co-routine we cannot block directly, but return\r
2463                                         indicating that we need to block. */\r
2464                                         vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToReceive ) );\r
2465                                         portENABLE_INTERRUPTS();\r
2466                                         return errQUEUE_BLOCKED;\r
2467                                 }\r
2468                                 else\r
2469                                 {\r
2470                                         portENABLE_INTERRUPTS();\r
2471                                         return errQUEUE_FULL;\r
2472                                 }\r
2473                         }\r
2474                         else\r
2475                         {\r
2476                                 mtCOVERAGE_TEST_MARKER();\r
2477                         }\r
2478                 }\r
2479                 portENABLE_INTERRUPTS();\r
2480 \r
2481                 portDISABLE_INTERRUPTS();\r
2482                 {\r
2483                         if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 )\r
2484                         {\r
2485                                 /* Data is available from the queue. */\r
2486                                 pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize;\r
2487                                 if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail )\r
2488                                 {\r
2489                                         pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead;\r
2490                                 }\r
2491                                 else\r
2492                                 {\r
2493                                         mtCOVERAGE_TEST_MARKER();\r
2494                                 }\r
2495                                 --( pxQueue->uxMessagesWaiting );\r
2496                                 ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );\r
2497 \r
2498                                 xReturn = pdPASS;\r
2499 \r
2500                                 /* Were any co-routines waiting for space to become available? */\r
2501                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
2502                                 {\r
2503                                         /* In this instance the co-routine could be placed directly\r
2504                                         into the ready list as we are within a critical section.\r
2505                                         Instead the same pending ready list mechanism is used as if\r
2506                                         the event were caused from within an interrupt. */\r
2507                                         if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
2508                                         {\r
2509                                                 xReturn = errQUEUE_YIELD;\r
2510                                         }\r
2511                                         else\r
2512                                         {\r
2513                                                 mtCOVERAGE_TEST_MARKER();\r
2514                                         }\r
2515                                 }\r
2516                                 else\r
2517                                 {\r
2518                                         mtCOVERAGE_TEST_MARKER();\r
2519                                 }\r
2520                         }\r
2521                         else\r
2522                         {\r
2523                                 xReturn = pdFAIL;\r
2524                         }\r
2525                 }\r
2526                 portENABLE_INTERRUPTS();\r
2527 \r
2528                 return xReturn;\r
2529         }\r
2530 \r
2531 #endif /* configUSE_CO_ROUTINES */\r
2532 /*-----------------------------------------------------------*/\r
2533 \r
2534 #if ( configUSE_CO_ROUTINES == 1 )\r
2535 \r
2536         BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken )\r
2537         {\r
2538         Queue_t * const pxQueue = xQueue;\r
2539 \r
2540                 /* Cannot block within an ISR so if there is no space on the queue then\r
2541                 exit without doing anything. */\r
2542                 if( pxQueue->uxMessagesWaiting < pxQueue->uxLength )\r
2543                 {\r
2544                         prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK );\r
2545 \r
2546                         /* We only want to wake one co-routine per ISR, so check that a\r
2547                         co-routine has not already been woken. */\r
2548                         if( xCoRoutinePreviouslyWoken == pdFALSE )\r
2549                         {\r
2550                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
2551                                 {\r
2552                                         if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
2553                                         {\r
2554                                                 return pdTRUE;\r
2555                                         }\r
2556                                         else\r
2557                                         {\r
2558                                                 mtCOVERAGE_TEST_MARKER();\r
2559                                         }\r
2560                                 }\r
2561                                 else\r
2562                                 {\r
2563                                         mtCOVERAGE_TEST_MARKER();\r
2564                                 }\r
2565                         }\r
2566                         else\r
2567                         {\r
2568                                 mtCOVERAGE_TEST_MARKER();\r
2569                         }\r
2570                 }\r
2571                 else\r
2572                 {\r
2573                         mtCOVERAGE_TEST_MARKER();\r
2574                 }\r
2575 \r
2576                 return xCoRoutinePreviouslyWoken;\r
2577         }\r
2578 \r
2579 #endif /* configUSE_CO_ROUTINES */\r
2580 /*-----------------------------------------------------------*/\r
2581 \r
2582 #if ( configUSE_CO_ROUTINES == 1 )\r
2583 \r
2584         BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxCoRoutineWoken )\r
2585         {\r
2586         BaseType_t xReturn;\r
2587         Queue_t * const pxQueue = xQueue;\r
2588 \r
2589                 /* We cannot block from an ISR, so check there is data available. If\r
2590                 not then just leave without doing anything. */\r
2591                 if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 )\r
2592                 {\r
2593                         /* Copy the data from the queue. */\r
2594                         pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize;\r
2595                         if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail )\r
2596                         {\r
2597                                 pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead;\r
2598                         }\r
2599                         else\r
2600                         {\r
2601                                 mtCOVERAGE_TEST_MARKER();\r
2602                         }\r
2603                         --( pxQueue->uxMessagesWaiting );\r
2604                         ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );\r
2605 \r
2606                         if( ( *pxCoRoutineWoken ) == pdFALSE )\r
2607                         {\r
2608                                 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
2609                                 {\r
2610                                         if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
2611                                         {\r
2612                                                 *pxCoRoutineWoken = pdTRUE;\r
2613                                         }\r
2614                                         else\r
2615                                         {\r
2616                                                 mtCOVERAGE_TEST_MARKER();\r
2617                                         }\r
2618                                 }\r
2619                                 else\r
2620                                 {\r
2621                                         mtCOVERAGE_TEST_MARKER();\r
2622                                 }\r
2623                         }\r
2624                         else\r
2625                         {\r
2626                                 mtCOVERAGE_TEST_MARKER();\r
2627                         }\r
2628 \r
2629                         xReturn = pdPASS;\r
2630                 }\r
2631                 else\r
2632                 {\r
2633                         xReturn = pdFAIL;\r
2634                 }\r
2635 \r
2636                 return xReturn;\r
2637         }\r
2638 \r
2639 #endif /* configUSE_CO_ROUTINES */\r
2640 /*-----------------------------------------------------------*/\r
2641 \r
2642 #if ( configQUEUE_REGISTRY_SIZE > 0 )\r
2643 \r
2644         void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */\r
2645         {\r
2646         UBaseType_t ux;\r
2647 \r
2648                 /* See if there is an empty space in the registry.  A NULL name denotes\r
2649                 a free slot. */\r
2650                 for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ )\r
2651                 {\r
2652                         if( xQueueRegistry[ ux ].pcQueueName == NULL )\r
2653                         {\r
2654                                 /* Store the information on this queue. */\r
2655                                 xQueueRegistry[ ux ].pcQueueName = pcQueueName;\r
2656                                 xQueueRegistry[ ux ].xHandle = xQueue;\r
2657 \r
2658                                 traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName );\r
2659                                 break;\r
2660                         }\r
2661                         else\r
2662                         {\r
2663                                 mtCOVERAGE_TEST_MARKER();\r
2664                         }\r
2665                 }\r
2666         }\r
2667 \r
2668 #endif /* configQUEUE_REGISTRY_SIZE */\r
2669 /*-----------------------------------------------------------*/\r
2670 \r
2671 #if ( configQUEUE_REGISTRY_SIZE > 0 )\r
2672 \r
2673         const char *pcQueueGetName( QueueHandle_t xQueue ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */\r
2674         {\r
2675         UBaseType_t ux;\r
2676         const char *pcReturn = NULL; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */\r
2677 \r
2678                 /* Note there is nothing here to protect against another task adding or\r
2679                 removing entries from the registry while it is being searched. */\r
2680                 for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ )\r
2681                 {\r
2682                         if( xQueueRegistry[ ux ].xHandle == xQueue )\r
2683                         {\r
2684                                 pcReturn = xQueueRegistry[ ux ].pcQueueName;\r
2685                                 break;\r
2686                         }\r
2687                         else\r
2688                         {\r
2689                                 mtCOVERAGE_TEST_MARKER();\r
2690                         }\r
2691                 }\r
2692 \r
2693                 return pcReturn;\r
2694         } /*lint !e818 xQueue cannot be a pointer to const because it is a typedef. */\r
2695 \r
2696 #endif /* configQUEUE_REGISTRY_SIZE */\r
2697 /*-----------------------------------------------------------*/\r
2698 \r
2699 #if ( configQUEUE_REGISTRY_SIZE > 0 )\r
2700 \r
2701         void vQueueUnregisterQueue( QueueHandle_t xQueue )\r
2702         {\r
2703         UBaseType_t ux;\r
2704 \r
2705                 /* See if the handle of the queue being unregistered in actually in the\r
2706                 registry. */\r
2707                 for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ )\r
2708                 {\r
2709                         if( xQueueRegistry[ ux ].xHandle == xQueue )\r
2710                         {\r
2711                                 /* Set the name to NULL to show that this slot if free again. */\r
2712                                 xQueueRegistry[ ux ].pcQueueName = NULL;\r
2713 \r
2714                                 /* Set the handle to NULL to ensure the same queue handle cannot\r
2715                                 appear in the registry twice if it is added, removed, then\r
2716                                 added again. */\r
2717                                 xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0;\r
2718                                 break;\r
2719                         }\r
2720                         else\r
2721                         {\r
2722                                 mtCOVERAGE_TEST_MARKER();\r
2723                         }\r
2724                 }\r
2725 \r
2726         } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */\r
2727 \r
2728 #endif /* configQUEUE_REGISTRY_SIZE */\r
2729 /*-----------------------------------------------------------*/\r
2730 \r
2731 #if ( configUSE_TIMERS == 1 )\r
2732 \r
2733         void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely )\r
2734         {\r
2735         Queue_t * const pxQueue = xQueue;\r
2736 \r
2737                 /* This function should not be called by application code hence the\r
2738                 'Restricted' in its name.  It is not part of the public API.  It is\r
2739                 designed for use by kernel code, and has special calling requirements.\r
2740                 It can result in vListInsert() being called on a list that can only\r
2741                 possibly ever have one item in it, so the list will be fast, but even\r
2742                 so it should be called with the scheduler locked and not from a critical\r
2743                 section. */\r
2744 \r
2745                 /* Only do anything if there are no messages in the queue.  This function\r
2746                 will not actually cause the task to block, just place it on a blocked\r
2747                 list.  It will not block until the scheduler is unlocked - at which\r
2748                 time a yield will be performed.  If an item is added to the queue while\r
2749                 the queue is locked, and the calling task blocks on the queue, then the\r
2750                 calling task will be immediately unblocked when the queue is unlocked. */\r
2751                 prvLockQueue( pxQueue );\r
2752                 if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U )\r
2753                 {\r
2754                         /* There is nothing in the queue, block for the specified period. */\r
2755                         vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely );\r
2756                 }\r
2757                 else\r
2758                 {\r
2759                         mtCOVERAGE_TEST_MARKER();\r
2760                 }\r
2761                 prvUnlockQueue( pxQueue );\r
2762         }\r
2763 \r
2764 #endif /* configUSE_TIMERS */\r
2765 /*-----------------------------------------------------------*/\r
2766 \r
2767 #if( ( configUSE_QUEUE_SETS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
2768 \r
2769         QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength )\r
2770         {\r
2771         QueueSetHandle_t pxQueue;\r
2772 \r
2773                 pxQueue = xQueueGenericCreate( uxEventQueueLength, ( UBaseType_t ) sizeof( Queue_t * ), queueQUEUE_TYPE_SET );\r
2774 \r
2775                 return pxQueue;\r
2776         }\r
2777 \r
2778 #endif /* configUSE_QUEUE_SETS */\r
2779 /*-----------------------------------------------------------*/\r
2780 \r
2781 #if ( configUSE_QUEUE_SETS == 1 )\r
2782 \r
2783         BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet )\r
2784         {\r
2785         BaseType_t xReturn;\r
2786 \r
2787                 taskENTER_CRITICAL();\r
2788                 {\r
2789                         if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL )\r
2790                         {\r
2791                                 /* Cannot add a queue/semaphore to more than one queue set. */\r
2792                                 xReturn = pdFAIL;\r
2793                         }\r
2794                         else if( ( ( Queue_t * ) xQueueOrSemaphore )->uxMessagesWaiting != ( UBaseType_t ) 0 )\r
2795                         {\r
2796                                 /* Cannot add a queue/semaphore to a queue set if there are already\r
2797                                 items in the queue/semaphore. */\r
2798                                 xReturn = pdFAIL;\r
2799                         }\r
2800                         else\r
2801                         {\r
2802                                 ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet;\r
2803                                 xReturn = pdPASS;\r
2804                         }\r
2805                 }\r
2806                 taskEXIT_CRITICAL();\r
2807 \r
2808                 return xReturn;\r
2809         }\r
2810 \r
2811 #endif /* configUSE_QUEUE_SETS */\r
2812 /*-----------------------------------------------------------*/\r
2813 \r
2814 #if ( configUSE_QUEUE_SETS == 1 )\r
2815 \r
2816         BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet )\r
2817         {\r
2818         BaseType_t xReturn;\r
2819         Queue_t * const pxQueueOrSemaphore = ( Queue_t * ) xQueueOrSemaphore;\r
2820 \r
2821                 if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet )\r
2822                 {\r
2823                         /* The queue was not a member of the set. */\r
2824                         xReturn = pdFAIL;\r
2825                 }\r
2826                 else if( pxQueueOrSemaphore->uxMessagesWaiting != ( UBaseType_t ) 0 )\r
2827                 {\r
2828                         /* It is dangerous to remove a queue from a set when the queue is\r
2829                         not empty because the queue set will still hold pending events for\r
2830                         the queue. */\r
2831                         xReturn = pdFAIL;\r
2832                 }\r
2833                 else\r
2834                 {\r
2835                         taskENTER_CRITICAL();\r
2836                         {\r
2837                                 /* The queue is no longer contained in the set. */\r
2838                                 pxQueueOrSemaphore->pxQueueSetContainer = NULL;\r
2839                         }\r
2840                         taskEXIT_CRITICAL();\r
2841                         xReturn = pdPASS;\r
2842                 }\r
2843 \r
2844                 return xReturn;\r
2845         } /*lint !e818 xQueueSet could not be declared as pointing to const as it is a typedef. */\r
2846 \r
2847 #endif /* configUSE_QUEUE_SETS */\r
2848 /*-----------------------------------------------------------*/\r
2849 \r
2850 #if ( configUSE_QUEUE_SETS == 1 )\r
2851 \r
2852         QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, TickType_t const xTicksToWait )\r
2853         {\r
2854         QueueSetMemberHandle_t xReturn = NULL;\r
2855 \r
2856                 ( void ) xQueueReceive( ( QueueHandle_t ) xQueueSet, &xReturn, xTicksToWait ); /*lint !e961 Casting from one typedef to another is not redundant. */\r
2857                 return xReturn;\r
2858         }\r
2859 \r
2860 #endif /* configUSE_QUEUE_SETS */\r
2861 /*-----------------------------------------------------------*/\r
2862 \r
2863 #if ( configUSE_QUEUE_SETS == 1 )\r
2864 \r
2865         QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet )\r
2866         {\r
2867         QueueSetMemberHandle_t xReturn = NULL;\r
2868 \r
2869                 ( void ) xQueueReceiveFromISR( ( QueueHandle_t ) xQueueSet, &xReturn, NULL ); /*lint !e961 Casting from one typedef to another is not redundant. */\r
2870                 return xReturn;\r
2871         }\r
2872 \r
2873 #endif /* configUSE_QUEUE_SETS */\r
2874 /*-----------------------------------------------------------*/\r
2875 \r
2876 #if ( configUSE_QUEUE_SETS == 1 )\r
2877 \r
2878         static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue, const BaseType_t xCopyPosition )\r
2879         {\r
2880         Queue_t *pxQueueSetContainer = pxQueue->pxQueueSetContainer;\r
2881         BaseType_t xReturn = pdFALSE;\r
2882 \r
2883                 /* This function must be called form a critical section. */\r
2884 \r
2885                 configASSERT( pxQueueSetContainer );\r
2886                 configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength );\r
2887 \r
2888                 if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength )\r
2889                 {\r
2890                         const int8_t cTxLock = pxQueueSetContainer->cTxLock;\r
2891 \r
2892                         traceQUEUE_SEND( pxQueueSetContainer );\r
2893 \r
2894                         /* The data copied is the handle of the queue that contains data. */\r
2895                         xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, xCopyPosition );\r
2896 \r
2897                         if( cTxLock == queueUNLOCKED )\r
2898                         {\r
2899                                 if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE )\r
2900                                 {\r
2901                                         if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE )\r
2902                                         {\r
2903                                                 /* The task waiting has a higher priority. */\r
2904                                                 xReturn = pdTRUE;\r
2905                                         }\r
2906                                         else\r
2907                                         {\r
2908                                                 mtCOVERAGE_TEST_MARKER();\r
2909                                         }\r
2910                                 }\r
2911                                 else\r
2912                                 {\r
2913                                         mtCOVERAGE_TEST_MARKER();\r
2914                                 }\r
2915                         }\r
2916                         else\r
2917                         {\r
2918                                 pxQueueSetContainer->cTxLock = ( int8_t ) ( cTxLock + 1 );\r
2919                         }\r
2920                 }\r
2921                 else\r
2922                 {\r
2923                         mtCOVERAGE_TEST_MARKER();\r
2924                 }\r
2925 \r
2926                 return xReturn;\r
2927         }\r
2928 \r
2929 #endif /* configUSE_QUEUE_SETS */\r
2930 \r
2931 \r
2932 \r
2933 \r
2934 \r
2935 \r
2936 \r
2937 \r
2938 \r
2939 \r
2940 \r
2941 \r