Home
last modified time | relevance | path

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

/Kernel-v11.1.0/portable/ThirdParty/GCC/RP2040/include/
Dportmacro.h159 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() ]-- )
/Kernel-v11.1.0/portable/ThirdParty/GCC/RP2040/
Dport.c121 UBaseType_t uxCriticalNestings[ configNUMBER_OF_CORES ] = { 0 }; variable