# Input overflow - resetting queue

**URL:** https://genode.discourse.group/t/input-overflow-resetting-queue/361
**Category:** Developer's Corner
**Created:** [September 1, 2026, 3:46pm UTC](https://genode.discourse.group/t/input-overflow-resetting-queue/361 "2026-09-01T15:46:45Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![hamed](https://avatars.discourse-cdn.com/v4/letter/h/d6d6ee/32.png) [@hamed](https://genode.discourse.group/u/hamed)
#### Post date: [September 1, 2026, 3:46pm UTC](https://genode.discourse.group/t/input-overflow-resetting-queue/361/1 "2026-09-01T15:46:45Z")

</div>

Hi

I am currently working on migrating a browser application from Qt5 to Qt6. I am using a hw kernel on an Intel Core i3-12100 processor.

Recently, I encountered an issue where the application freezes completely after a few click or keyboard events, accompanied by the following warning:

`[init -> wm] Warning: input overflow - resetting queue`

Any insights into why this error occurs and how to resolve it would be greatly appreciated.

Thanks

---

<div class="post-metadata">

### Author: ![chelmuth](https://dub1.discourse-cdn.com/flex006/user_avatar/genode.discourse.group/chelmuth/32/1_2.png) [@chelmuth](https://genode.discourse.group/u/chelmuth)
#### Post date: [September 2, 2026, 8:44am UTC](https://genode.discourse.group/t/input-overflow-resetting-queue/361/2 "2026-09-02T08:44:17Z")

</div>

The error message is a direct consequence of your application freezing. The wm window manager passes user-input events to its clients. If the wm client does not collect the events in the Qt event loop before the server-local queue is full, the server emits this warning and resets the queue. This way, a temporarily stuck client could later pick-up the most recent events addressing its windows.

Unfortunately, I don’t have any idea, why your application freezes outside the Qt event loop.

---

<div class="post-metadata">

### Author: ![hamed](https://avatars.discourse-cdn.com/v4/letter/h/d6d6ee/32.png) [@hamed](https://genode.discourse.group/u/hamed)
#### Post date: [September 22, 2026, 6:11am UTC](https://genode.discourse.group/t/input-overflow-resetting-queue/361/3 "2026-09-22T06:11:16Z")

</div>

Yes, you’re right. I was looking at the issue the other way around and initially thought that the full event queue was causing the deadlock, whereas the full queue was actually a consequence of the deadlock.

I found and fixed the underlying issue. Thanks for the explanation!
