Searched refs:uxCriticalNestings (Results 1 – 2 of 2) sorted by relevance
159 extern UBaseType_t uxCriticalNestings[ configNUMBER_OF_CORES ];160 #define portGET_CRITICAL_NESTING_COUNT() ( uxCriticalNestings[ portGET_CORE_ID() ] )161 #define portSET_CRITICAL_NESTING_COUNT( x ) ( uxCriticalNestings[ portGET_CORE_ID() ] = ( x )…162 #define portINCREMENT_CRITICAL_NESTING_COUNT() ( uxCriticalNestings[ portGET_CORE_ID() ]++ )163 #define portDECREMENT_CRITICAL_NESTING_COUNT() ( uxCriticalNestings[ portGET_CORE_ID() ]-- )
121 UBaseType_t uxCriticalNestings[ configNUMBER_OF_CORES ] = { 0 }; variable