mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
monitor: remove target-specific code from monitor.c
Move target-specific code out of /monitor.c to /target-*/monitor.c, this will avoid code cluttering and using random ifdeffery. The solution is quite simple, but solves the issue of the separation of target-specific code from monitor. Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com> Signed-off-by: Denis V. Lunev <den@openvz.org> CC: Paolo Bonzini <pbonzini@redhat.com> CC: Peter Maydell <peter.maydell@linaro.org> Message-Id: <1441899541-1856-3-git-send-email-den@openvz.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
da76ee76f7
commit
bf95728400
15 changed files with 1062 additions and 855 deletions
|
@ -38,3 +38,4 @@ stub-obj-$(CONFIG_WIN32) += fd-register.o
|
|||
stub-obj-y += cpus.o
|
||||
stub-obj-y += kvm.o
|
||||
stub-obj-y += qmp_pc_dimm_device_list.o
|
||||
stub-obj-y += target-monitor-defs.o
|
||||
|
|
9
stubs/target-monitor-defs.c
Normal file
9
stubs/target-monitor-defs.c
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "stddef.h"
|
||||
#include "qemu/typedefs.h"
|
||||
|
||||
const MonitorDef *target_monitor_defs(void);
|
||||
|
||||
const MonitorDef *target_monitor_defs(void)
|
||||
{
|
||||
return NULL;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue