This commit is contained in:
Kody Stribrny 2026-03-04 13:42:15 -08:00 committed by GitHub
commit 7219871e2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,6 +65,9 @@ static void prvTickISR( void )
/* Tasks or ISRs running on other cores may still in critical section in /* Tasks or ISRs running on other cores may still in critical section in
* multiple cores environment. Incrementing tick needs to performed in * multiple cores environment. Incrementing tick needs to performed in
* critical section. */ * critical section. */
/* MISRA Ref 4.7.1 [Return value shall be checked] */
/* More details at: https://github.com/FreeRTOS/FreeRTOS-Kernel/blob/main/MISRA.md#dir-47 */
/* coverity[misra_c_2012_directive_4_7_violation] */
ulPreviousMask = taskENTER_CRITICAL_FROM_ISR(); ulPreviousMask = taskENTER_CRITICAL_FROM_ISR();
/* Maintain the tick count. */ /* Maintain the tick count. */