diff options
author | Alexander Graf | 2017-03-30 16:22:55 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2017-05-03 14:20:12 +0200 |
commit | 2222e0a633070f7f3eafcc9d0e95e7f1a4e6fe36 (patch) | |
tree | e62c1786a56a538634df34d725c09b4c50a884a5 /hw/input/trace-events | |
parent | input: don't queue delay if paused (diff) | |
download | qemu-2222e0a633070f7f3eafcc9d0e95e7f1a4e6fe36.tar.gz qemu-2222e0a633070f7f3eafcc9d0e95e7f1a4e6fe36.tar.xz qemu-2222e0a633070f7f3eafcc9d0e95e7f1a4e6fe36.zip |
input: Add trace event for empty keyboard queue
When driving QEMU from the outside, we have basically no chance to
determine how quickly the guest OS picks up key events, so we usually
have to limit ourselves to very slow keyboard presses to make sure
the guest always has enough chance to pick them up.
This patch adds a trace events when the keyboarde queue is drained.
An external driver can use that as hint that new keys can be pressed.
Signed-off-by: Alexander Graf <agraf@suse.de>
Message-id: 1490883775-94658-1-git-send-email-agraf@suse.de
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/input/trace-events')
-rw-r--r-- | hw/input/trace-events | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/input/trace-events b/hw/input/trace-events index f3bfbede5c..5a87818b49 100644 --- a/hw/input/trace-events +++ b/hw/input/trace-events @@ -24,6 +24,7 @@ milkymist_softusb_pulse_irq(void) "Pulse IRQ" # hw/input/hid.c hid_kbd_queue_full(void) "queue full" +hid_kbd_queue_empty(void) "queue empty" # hw/input/virtio virtio_input_queue_full(void) "queue full" |