mirror of
https://github.com/espressif/esp-idf
synced 2025-03-12 02:29:10 -04:00
Current lwip implementation does not support deleting a task which is actively waiting on `select()` or `poll()` API. Therefore we have to make sure that `select()` exits to deallocate its internal callback before deleting the task. This is achieved by a shutdown semaphore which informs the client once the `select()` exitted. fix slave