Home
last modified time | relevance | path

Searched refs:portGET_CORE_ID (Results 1 – 7 of 7) sorted by relevance

/Kernel-v11.0.1/portable/ThirdParty/GCC/RP2040/include/
Dportmacro.h141 #define portGET_CORE_ID() get_core_num() macro
143 #define portGET_CORE_ID() 0 macro
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.0.1/portable/template/
Dport.c36 vTaskSwitchContext( portGET_CORE_ID() ); in vPortYield()
70 vTaskSwitchContext( portGET_CORE_ID() ); in prvTickISR()
Dportmacro.h113 #define portGET_CORE_ID() 0 macro
/Kernel-v11.0.1/portable/ThirdParty/GCC/RP2040/
Dport.c352 vTaskSwitchContext( portGET_CORE_ID() ); in xPortStartSchedulerOnCore()
459 configASSERT( pxYieldSpinLock[ portGET_CORE_ID() ] == NULL ); in vPortYield()
500 int xCoreID = ( int ) portGET_CORE_ID(); in vPortEnableInterrupts()
542 configASSERT( xCoreID != ( int ) portGET_CORE_ID() ); in vYieldCore()
1033 configASSERT( pxYieldSpinLock[ portGET_CORE_ID() ] == NULL ); in vPortLockInternalSpinUnlockWithWait()
1039 int xCoreID = ( int ) portGET_CORE_ID(); in vPortLockInternalSpinUnlockWithWait()
1112 configASSERT( pxYieldSpinLock[ portGET_CORE_ID() ] == NULL ); in xPortLockInternalSpinUnlockWithBestEffortWaitOrTimeout()
1122 int xCoreID = ( int ) portGET_CORE_ID(); in xPortLockInternalSpinUnlockWithBestEffortWaitOrTimeout()
/Kernel-v11.0.1/portable/ThirdParty/xClang/XCOREAI/
Dportmacro.h91 ulPortYieldRequired[ portGET_CORE_ID() ] = pdTRUE; \
99 #define portGET_CORE_ID() rtos_core_id_get() macro
/Kernel-v11.0.1/
Dtasks.c313 …#define portGET_CRITICAL_NESTING_COUNT() ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
314 …#define portSET_CRITICAL_NESTING_COUNT( x ) ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
315 …#define portINCREMENT_CRITICAL_NESTING_COUNT() ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
316 …#define portDECREMENT_CRITICAL_NESTING_COUNT() ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
328 if( ( xCoreID ) == ( BaseType_t ) portGET_CORE_ID() ) \
808 pxThisTCB = pxCurrentTCBs[ portGET_CORE_ID() ]; in prvCheckForRunStateChange()
963 … if( ( ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxTaskAttributes & taskATTRIBUTE_IS_IDLE ) == 0U ) && in prvYieldForTask()
964 ( pxTCB->uxPriority > pxCurrentTCBs[ portGET_CORE_ID() ]->uxPriority ) ) in prvYieldForTask()
966 configASSERT( ( xYieldPendings[ portGET_CORE_ID() ] == pdTRUE ) || in prvYieldForTask()
967 … ( taskTASK_IS_RUNNING( pxCurrentTCBs[ portGET_CORE_ID() ] ) == pdFALSE ) ); in prvYieldForTask()
[all …]
/Kernel-v11.0.1/include/
DFreeRTOS.h391 #ifndef portGET_CORE_ID
394 #define portGET_CORE_ID() 0 macro
396 … #error configNUMBER_OF_CORES is set to more than 1 then portGET_CORE_ID must also be defined.