Part Number: AM6442
I need to port on FreeRTOS a library made for Linux with socket API and threads.
To wait for incoming packets, the code uses poll on several file descriptors (pipes + sockets).
In such way, a thread dedicated to intercept library internal events can unblock the thread blocked on poll.
How to reproduce a similar situation with lwip_poll ?
I cannot find which type of file descriptor a thread could poll together with socket file descriptors (pipes are not available on FreeRTOS).
Is there any way to unblock lwip_poll except than with packets or timeout ?
Looking forward
Andrea