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() ]-- )
40 vTaskSwitchContext( portGET_CORE_ID() ); in vPortYield()74 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
320 …#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 …]
409 #ifndef portGET_CORE_ID412 #define portGET_CORE_ID() 0 macro414 … #error configNUMBER_OF_CORES is set to more than 1 then portGET_CORE_ID must also be defined.