refactor: remove blocking mode for now

This commit is contained in:
CJ van den Berg 2026-02-26 13:07:34 +01:00
parent 5df4aae786
commit 2c4f752186
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -45,7 +45,7 @@ pub const Handler = struct {
};
pub const ReadableStatus = enum {
is_readable, // backend may now read from fd
// TODO: is_readable, // backend may now read from fd (blocking mode)
will_notify, // backend must wait for a handle_read_ready call
};
@ -121,9 +121,6 @@ const INotifyBackend = struct {
error.HandlerFailed => |e_| return e_,
}) {
.will_notify => {},
.is_readable => {
@panic("TODO");
},
};
}