Searched refs:uxTopReadyPriority (Results 1 – 2 of 2) sorted by relevance
82 #define portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) \ argument83 ( uxTopReadyPriority ) |= ( 1UL << ( uxPriority ) )93 #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) \ argument94 ( uxTopReadyPriority ) &= ~( 1UL << ( uxPriority ) )104 #define portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ) \ argument105 ( uxTopPriority ) = ( 31UL - ulPortCountLeadingZeros( ( uxTopReadyPriority ) ) )
169 if( ( uxPriority ) > uxTopReadyPriority ) \171 uxTopReadyPriority = ( uxPriority ); \180 UBaseType_t uxTopPriority = uxTopReadyPriority; \192 uxTopReadyPriority = uxTopPriority; \206 #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) argument215 …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; variable887 if( pxTCB->uxPriority >= uxTopReadyPriority ) in prvYieldForTask()[all …]