unix: remove UV__SIGNAL_EVENT dispatch from uv__io_cb

uv__signal_event() is invoked directly from uv__io_poll(), so the
UV__SIGNAL_EVENT case in uv__io_cb() is never reached.

Refs: https://github.com/libuv/libuv/pull/4854#discussion_r2246110177
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
This commit is contained in:
Juan José Arboleda 2025-08-25 12:10:23 -05:00
parent 9ba8078272
commit e0bb81af78

View File

@ -923,9 +923,6 @@ void uv__io_cb(uv_loop_t* loop, uv__io_t* w, unsigned int events) {
case UV__POLL_IO:
uv__poll_io(loop, w, events);
break;
case UV__SIGNAL_EVENT:
uv__signal_event(loop, w, events);
break;
case UV__SERVER_IO:
uv__server_io(loop, w, events);
break;