FreeRTOS - Task Notifications
Given this code snippet, what is the expected behavior?
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
xTaskNotifyGiveFromISR(taskHandle, &xHigherPriorityTaskWoken);
if(xHigherPriorityTaskWoken) {
portYIELD_FROM_ISR();
}