mirror of
				https://github.com/FreeRTOS/FreeRTOS-Kernel.git
				synced 2025-11-04 11:09:01 +01:00 
			
		
		
		
	Corrected the bug that the comments in the file state was corrected in V4.0.3.
This commit is contained in:
		
							parent
							
								
									c1d020f689
								
							
						
					
					
						commit
						f0c4accb88
					
				@ -56,7 +56,7 @@
 | 
			
		||||
 | 
			
		||||
/* 
 | 
			
		||||
 | 
			
		||||
Changes from V4.0.2
 | 
			
		||||
Changes from V4.1.1
 | 
			
		||||
 | 
			
		||||
	+ The second set of tasks were created the wrong way around.  This has been
 | 
			
		||||
	  corrected.
 | 
			
		||||
@ -162,8 +162,8 @@ const portTickType xDontBlock = ( portTickType ) 0;
 | 
			
		||||
	pxQueueParameters4->xBlockTime = xBlockTime;
 | 
			
		||||
	pxQueueParameters4->psCheckVariable = &( sBlockingConsumerCount[ 1 ] );
 | 
			
		||||
 | 
			
		||||
	xTaskCreate( vBlockingQueueProducer, ( signed portCHAR * ) "QProdB3", blckqSTACK_SIZE, ( void * ) pxQueueParameters3, tskIDLE_PRIORITY, NULL );
 | 
			
		||||
	xTaskCreate( vBlockingQueueConsumer, ( signed portCHAR * ) "QConsB4", blckqSTACK_SIZE, ( void * ) pxQueueParameters4, uxPriority, NULL );
 | 
			
		||||
	xTaskCreate( vBlockingQueueConsumer, ( signed portCHAR * ) "QProdB3", blckqSTACK_SIZE, ( void * ) pxQueueParameters3, tskIDLE_PRIORITY, NULL );
 | 
			
		||||
	xTaskCreate( vBlockingQueueProducer, ( signed portCHAR * ) "QConsB4", blckqSTACK_SIZE, ( void * ) pxQueueParameters4, uxPriority, NULL );
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user