mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 01:58:32 -04:00
Ensure the PIC32 interrupt stack is 8 byte aligned for all values of configISR_STACK_SIZE.
This commit is contained in:
parent
96db5a3600
commit
8ca40d80a9
4 changed files with 14 additions and 8 deletions
|
@ -209,7 +209,7 @@ extern void vPortClearInterruptMaskFromISR( UBaseType_t );
|
|||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
#define portGET_HIGHEST_PRIORITY( uxTopPriority, uxReadyPriorities ) uxTopPriority = ( 31 - _clz( ( uxReadyPriorities ) ) )
|
||||
#define portGET_HIGHEST_PRIORITY( uxTopPriority, uxReadyPriorities ) uxTopPriority = ( 31UL - _clz( ( uxReadyPriorities ) ) )
|
||||
|
||||
#endif /* taskRECORD_READY_PRIORITY */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue