mirror of
				https://github.com/FreeRTOS/FreeRTOS-Kernel.git
				synced 2025-11-04 11:09:01 +01:00 
			
		
		
		
	Remove access check from ISR function (#1127)
This commit is contained in:
		
							parent
							
								
									18a168bcd2
								
							
						
					
					
						commit
						0b904a553a
					
				@ -3838,17 +3838,7 @@
 | 
			
		||||
            BaseType_t xReturn = pdFALSE;
 | 
			
		||||
            TimerHandle_t xInternalTimerHandle = NULL;
 | 
			
		||||
            int32_t lIndex;
 | 
			
		||||
            BaseType_t xIsHigherPriorityTaskWokenWriteable = pdFALSE;
 | 
			
		||||
 | 
			
		||||
            if( pxHigherPriorityTaskWoken != NULL )
 | 
			
		||||
            {
 | 
			
		||||
                xIsHigherPriorityTaskWokenWriteable = xPortIsAuthorizedToAccessBuffer( pxHigherPriorityTaskWoken,
 | 
			
		||||
                                                                                       sizeof( BaseType_t ),
 | 
			
		||||
                                                                                       tskMPU_WRITE_PERMISSION );
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            if( ( pxHigherPriorityTaskWoken == NULL ) || ( xIsHigherPriorityTaskWokenWriteable == pdTRUE ) )
 | 
			
		||||
            {
 | 
			
		||||
            lIndex = ( int32_t ) xTimer;
 | 
			
		||||
 | 
			
		||||
            if( IS_EXTERNAL_INDEX_VALID( lIndex ) != pdFALSE )
 | 
			
		||||
@ -3860,7 +3850,6 @@
 | 
			
		||||
                    xReturn = xTimerGenericCommandFromISR( xInternalTimerHandle, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait );
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            return xReturn;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user