Searched refs:pxStack (Results 1 – 4 of 4) sorted by relevance
221 StackType_t * pxStack; /*< Points to the start of the stack. */ member286 arc_aux_write( AUX_S_KSTACK_TOP, ( uint32_t ) ( new->pxStack ) ); in vPortSetStackCheck()289 arc_aux_write( AUX_KSTACK_TOP, ( uint32_t ) ( new->pxStack ) ); in vPortSetStackCheck()
62 if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack + portSTACK_LIMIT_PADDING ) \93 const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \
221 StackType_t * pxStack; /*< Points to the start of the stack. */ member285 arc_aux_write( AUX_USTACK_TOP, ( uint32_t ) ( new->pxStack ) ); in vPortSetStackCheck()
366 StackType_t * pxStack; /**< Points to the start of the stack. */ member1280 pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; in prvCreateStaticTask()1394 pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; in prvCreateRestrictedStaticTask()1512 pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; in prvCreateRestrictedTask()1644 …pxNewTCB->pxStack = ( StackType_t * ) pvPortMallocStack( ( ( ( size_t ) usStackDepth ) * sizeof( S… in prvCreateTask()1646 if( pxNewTCB->pxStack == NULL ) in prvCreateTask()1656 StackType_t * pxStack; in prvCreateTask() local1662 pxStack = pvPortMallocStack( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); in prvCreateTask()1664 if( pxStack != NULL ) in prvCreateTask()1677 pxNewTCB->pxStack = pxStack; in prvCreateTask()[all …]