mirror of https://github.com/xemu-project/xemu.git
hw/display/xenfb.c: Add trace_xenfb_key_event
It may be better to add a trace event to monitor the last moment of a key event from QEMU to guest VM Signed-off-by: Liang Yan <lyan@suse.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
b9710bc911
commit
6ec83befe1
|
@ -6,6 +6,7 @@ jazz_led_write(uint64_t addr, uint8_t new) "write addr=0x%"PRIx64": 0x%x"
|
|||
|
||||
# hw/display/xenfb.c
|
||||
xenfb_mouse_event(void *opaque, int dx, int dy, int dz, int button_state, int abs_pointer_wanted) "%p x %d y %d z %d bs 0x%x abs %d"
|
||||
xenfb_key_event(void *opaque, int scancode, int button_state) "%p scancode %d bs 0x%x"
|
||||
xenfb_input_connected(void *xendev, int abs_pointer_wanted) "%p abs %d"
|
||||
|
||||
# hw/display/g364fb.c
|
||||
|
|
|
@ -290,6 +290,7 @@ static void xenfb_key_event(void *opaque, int scancode)
|
|||
scancode |= 0x80;
|
||||
xenfb->extended = 0;
|
||||
}
|
||||
trace_xenfb_key_event(opaque, scancode2linux[scancode], down);
|
||||
xenfb_send_key(xenfb, down, scancode2linux[scancode]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue