extmod/vfs_posix_file: Add poll support for missing ERR,HUP,NVAL values.

Signed-off-by: Damien George <damien@micropython.org>
pull/12138/head
Damien George 2023-07-31 12:32:02 +10:00
rodzic 6a179019e8
commit 22106bf2fa
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -209,6 +209,15 @@ STATIC mp_uint_t vfs_posix_file_ioctl(mp_obj_t o_in, mp_uint_t request, uintptr_
if (pfd.revents & POLLOUT) {
ret |= MP_STREAM_POLL_WR;
}
if (pfd.revents & POLLERR) {
ret |= MP_STREAM_POLL_ERR;
}
if (pfd.revents & POLLHUP) {
ret |= MP_STREAM_POLL_HUP;
}
if (pfd.revents & POLLNVAL) {
ret |= MP_STREAM_POLL_NVAL;
}
}
return ret;
#endif