mirror of
				https://github.com/FreeRTOS/FreeRTOS-Kernel.git
				synced 2025-11-04 11:09:01 +01:00 
			
		
		
		
	Fix C90 Compilation Failure (#359)
This issue was reported here: https://github.com/FreeRTOS/FreeRTOS-Kernel/issues/358 Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
		
							parent
							
								
									4e3bf0f5c0
								
							
						
					
					
						commit
						8b2a1b802a
					
				@ -627,10 +627,12 @@ EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,
 | 
			
		||||
 | 
			
		||||
void vEventGroupDelete( EventGroupHandle_t xEventGroup )
 | 
			
		||||
{
 | 
			
		||||
    configASSERT( xEventGroup );
 | 
			
		||||
 | 
			
		||||
    EventGroup_t * pxEventBits = xEventGroup;
 | 
			
		||||
    const List_t * pxTasksWaitingForBits = &( pxEventBits->xTasksWaitingForBits );
 | 
			
		||||
    const List_t * pxTasksWaitingForBits;
 | 
			
		||||
 | 
			
		||||
    configASSERT( pxEventBits );
 | 
			
		||||
 | 
			
		||||
    pxTasksWaitingForBits = &( pxEventBits->xTasksWaitingForBits );
 | 
			
		||||
 | 
			
		||||
    vTaskSuspendAll();
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user