Searched refs:portGET_CORE_ID (Results 1 – 7 of 7) sorted by relevance
141 #define portGET_CORE_ID() get_core_num() macro143 #define portGET_CORE_ID() 0 macro160 #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() ]-- )
36 vTaskSwitchContext( portGET_CORE_ID() ); in vPortYield()70 vTaskSwitchContext( portGET_CORE_ID() ); in prvTickISR()
113 #define portGET_CORE_ID() 0 macro
352 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()
91 ulPortYieldRequired[ portGET_CORE_ID() ] = pdTRUE; \99 #define portGET_CORE_ID() rtos_core_id_get() macro
313 …#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 …]
391 #ifndef portGET_CORE_ID394 #define portGET_CORE_ID() 0 macro396 … #error configNUMBER_OF_CORES is set to more than 1 then portGET_CORE_ID must also be defined.