Home
last modified time | relevance | path

Searched refs:uxTopReadyPriority (Results 1 – 2 of 2) sorted by relevance

/Kernel-v11.1.0/portable/GCC/ARM_CRx_MPU/
Dportmacro.h82 #define portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) \ argument
83 ( uxTopReadyPriority ) |= ( 1UL << ( uxPriority ) )
93 #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) \ argument
94 ( uxTopReadyPriority ) &= ~( 1UL << ( uxPriority ) )
104 #define portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ) \ argument
105 ( uxTopPriority ) = ( 31UL - ulPortCountLeadingZeros( ( uxTopReadyPriority ) ) )
/Kernel-v11.1.0/
Dtasks.c169 if( ( uxPriority ) > uxTopReadyPriority ) \
171 uxTopReadyPriority = ( uxPriority ); \
180 UBaseType_t uxTopPriority = uxTopReadyPriority; \
192 uxTopReadyPriority = uxTopPriority; \
206 #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) argument
215 …ORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( ( uxPriority ), uxTopReadyPriority )
224 portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \
238 … portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \
488 PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY; variable
887 if( pxTCB->uxPriority >= uxTopReadyPriority ) in prvYieldForTask()
[all …]