diff --git a/core/kernel.nim b/core/kernel.nim index b8fb0ff..38eef09 100644 --- a/core/kernel.nim +++ b/core/kernel.nim @@ -149,12 +149,8 @@ proc ion_push_stdin*(p: pointer, len: csize_t) {.exportc, cdecl.} = kprintln("[Kernel] Input packet pushed to ring") - # Phase 35d: Route to Compositor FIRST - if chan_compositor_input.ring != nil: - chan_compositor_input.send(pkt) - else: - # Fallback to direct routing if compositor not active - chan_input.send(pkt) + # Phase 37: Direct routing (Compositor not yet operational) + chan_input.send(pkt) proc get_ion_load(): int = ## Calculate load of the Command Ring (The Heartbeat of the NPLs)