void vPortYield()

in GCC/MSP430FR5969/port.c [253:263]


void vPortYield( void )
{
    asm volatile ( "push.w  sr" );

    portDISABLE_INTERRUPTS();
    portSAVE_CONTEXT();

    vTaskSwitchContext();

    portRESTORE_CONTEXT();
}