]> git.proxmox.com Git - mirror_qemu.git/commit - cpus.c
tcg: Simplify how dump_drift_info() prints
authorMarkus Armbruster <armbru@redhat.com>
Wed, 17 Apr 2019 19:17:53 +0000 (21:17 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Thu, 18 Apr 2019 20:18:59 +0000 (22:18 +0200)
commit76c8661595fa9414fabf8a164b9adfc93c8a65e2
tree8e29fbe42f3a67f7587749f8d57e31804c16c381
parent3de2faa9a87e0a9fd84a00a2481cdbb0304e866d
tcg: Simplify how dump_drift_info() prints

dump_drift_info() takes an fprintf()-like callback and a FILE * to pass
to it.

Its only caller hmp_info_jit() passes monitor_fprintf() and a Monitor
* cast to FILE *.  monitor_fprintf() casts it right back, and is
otherwise identical to monitor_printf().  The type-punning is ugly.

Drop the callback, and call qemu_printf() instead.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20190417191805.28198-6-armbru@redhat.com>
cpus.c
include/sysemu/cpus.h
monitor.c