mirror of
				https://github.com/FreeRTOS/FreeRTOS-Kernel.git
				synced 2025-10-29 00:36:16 -04:00 
			
		
		
		
	* Move forward Kernel submodule pointer * Fixing patches for CBMC proofs * Update proofs to assume cTxLock != 127 * Update proofs to assume cRxLock != 127
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			1,000 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			1,000 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git a/FreeRTOS/Source/queue.c b/FreeRTOS/Source/queue.c
 | |
| index 17a6964e..24a40c29 100644
 | |
| --- a/FreeRTOS/Source/queue.c
 | |
| +++ b/FreeRTOS/Source/queue.c
 | |
| @@ -207,7 +207,7 @@ static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer
 | |
|  	 * Checks to see if a queue is a member of a queue set, and if so, notifies
 | |
|  	 * the queue set that the queue contains data.
 | |
|  	 */
 | |
| -	static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION;
 | |
| +	BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION;
 | |
|  #endif
 | |
| 
 | |
|  /*
 | |
| @@ -2957,7 +2957,7 @@ BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue )
 | |
|  
 | |
|  #if ( configUSE_QUEUE_SETS == 1 )
 | |
|  
 | |
| -    static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue )
 | |
| +    BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue )
 | |
|      {
 | |
|          Queue_t * pxQueueSetContainer = pxQueue->pxQueueSetContainer;
 | |
|          BaseType_t xReturn = pdFALSE;
 |