diff --git a/inputd/src/main.rs b/inputd/src/main.rs index 218da3c62f..0667fca53e 100644 --- a/inputd/src/main.rs +++ b/inputd/src/main.rs @@ -560,7 +560,7 @@ fn deamon(deamon: redox_daemon::Daemon) -> anyhow::Result<()> { pending, needs_handoff, ref mut notified, - vt, + .. } => { if (!*needs_handoff && pending.is_empty()) || *notified @@ -569,14 +569,6 @@ fn deamon(deamon: redox_daemon::Daemon) -> anyhow::Result<()> { continue; } - let active_vt = scheme.active_vt.unwrap(); - - // The activate VT is not the same as the VT that the consumer is listening to - // for events. - if !*needs_handoff && active_vt != *vt { - continue; - } - // Notify the consumer that we have some events to read. Yum yum. socket_file.post_fevent(*id, EventFlags::EVENT_READ.bits())?;