void vPortYield()

in GCC/AVR_AVRDx/port.c [152:158]


void vPortYield( void )
{
    portSAVE_CONTEXT();
    vTaskSwitchContext();
    portRESTORE_CONTEXT();
    asm volatile ( "ret" );
}