Revert "[core] Update comment wording"

This reverts commit 760dfd7714.
This commit is contained in:
J. Nick Koston
2026-03-04 11:20:55 -10:00
parent 5a16fdf69d
commit 9e1121dc71
+1 -2
View File
@@ -677,8 +677,7 @@ void Application::yield_with_select_(uint32_t delay_ms) {
// until consumed by ulTaskNotifyTake, so notifications received while the task is
// running are not lost. The only unhandled case is intentionally undrained sockets
// (e.g., API's MAX_MESSAGES_PER_LOOP throttle), where the delay_ms latency before
// re-checking is the desired behavior — waking immediately would defeat the throttle
// which exists to let other tasks and components run.
// re-checking is the desired behavior — waking immediately would defeat the throttle.
ulTaskNotifyTake(pdTRUE, pdMS_TO_TICKS(delay_ms));
#elif defined(USE_SOCKET_SELECT_SUPPORT)