Home
last modified time | relevance | path

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

/Kernel-v11.1.0/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.1.0/portable/template/
Dport.c40 vTaskSwitchContext( portGET_CORE_ID() ); in vPortYield()
74 vTaskSwitchContext( portGET_CORE_ID() ); in prvTickISR()
Dportmacro.h113 #define portGET_CORE_ID() 0 macro
/Kernel-v11.1.0/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.1.0/portable/ThirdParty/xClang/XCOREAI/
Dportmacro.h91 ulPortYieldRequired[ portGET_CORE_ID() ] = pdTRUE; \
99 #define portGET_CORE_ID() rtos_core_id_get() macro
/Kernel-v11.1.0/
Dtasks.c320 …#define portGET_CRITICAL_NESTING_COUNT() ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
321 …#define portSET_CRITICAL_NESTING_COUNT( x ) ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
322 …#define portINCREMENT_CRITICAL_NESTING_COUNT() ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
323 …#define portDECREMENT_CRITICAL_NESTING_COUNT() ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxCritical…
335 if( ( xCoreID ) == ( BaseType_t ) portGET_CORE_ID() ) \
815 pxThisTCB = pxCurrentTCBs[ portGET_CORE_ID() ]; in prvCheckForRunStateChange()
970 … if( ( ( pxCurrentTCBs[ portGET_CORE_ID() ]->uxTaskAttributes & taskATTRIBUTE_IS_IDLE ) == 0U ) && in prvYieldForTask()
971 ( pxTCB->uxPriority > pxCurrentTCBs[ portGET_CORE_ID() ]->uxPriority ) ) in prvYieldForTask()
973 configASSERT( ( xYieldPendings[ portGET_CORE_ID() ] == pdTRUE ) || in prvYieldForTask()
974 … ( taskTASK_IS_RUNNING( pxCurrentTCBs[ portGET_CORE_ID() ] ) == pdFALSE ) ); in prvYieldForTask()
[all …]
/Kernel-v11.1.0/include/
DFreeRTOS.h409 #ifndef portGET_CORE_ID
412 #define portGET_CORE_ID() 0 macro
414 … #error configNUMBER_OF_CORES is set to more than 1 then portGET_CORE_ID must also be defined.