mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
include: Rename sysemu/ -> system/
Headers in include/sysemu/ are not only related to system *emulation*, they are also used by virtualization. Rename as system/ which is clearer. Files renamed manually then mechanical change using sed tool. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Lei Yang <leiyang@redhat.com> Message-Id: <20241203172445.28576-1-philmd@linaro.org>
This commit is contained in:
parent
63cda19446
commit
32cad1ffb8
965 changed files with 1708 additions and 1707 deletions
|
@ -29,7 +29,7 @@
|
|||
#include "qapi/qmp/qerror.h"
|
||||
#include "qemu/ctype.h"
|
||||
#include "qemu/cutils.h"
|
||||
#include "sysemu/runstate.h"
|
||||
#include "system/runstate.h"
|
||||
|
||||
/* file descriptors passed via SCM_RIGHTS */
|
||||
typedef struct mon_fd_t mon_fd_t;
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "monitor/monitor-internal.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qapi/qmp/qdict.h"
|
||||
#include "sysemu/hw_accel.h"
|
||||
#include "system/hw_accel.h"
|
||||
|
||||
/* Set the current CPU defined by the user. Callers must hold BQL. */
|
||||
int monitor_set_cpu(Monitor *mon, int cpu_index)
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "qapi/qmp/qdict.h"
|
||||
#include "qemu/cutils.h"
|
||||
#include "qemu/log.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "system/system.h"
|
||||
|
||||
bool hmp_handle_error(Monitor *mon, Error *err)
|
||||
{
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "monitor-internal.h"
|
||||
#include "monitor/qdev.h"
|
||||
#include "net/slirp.h"
|
||||
#include "sysemu/device_tree.h"
|
||||
#include "system/device_tree.h"
|
||||
#include "monitor/hmp-target.h"
|
||||
#include "monitor/hmp.h"
|
||||
#include "block/block-hmp-cmds.h"
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include "qemu/log.h"
|
||||
#include "qemu/option.h"
|
||||
#include "qemu/units.h"
|
||||
#include "sysemu/block-backend.h"
|
||||
#include "system/block-backend.h"
|
||||
#include "trace.h"
|
||||
|
||||
static void monitor_command_cb(void *opaque, const char *cmdline,
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "qapi/qmp/dispatch.h"
|
||||
#include "qapi/qmp/json-parser.h"
|
||||
#include "qemu/readline.h"
|
||||
#include "sysemu/iothread.h"
|
||||
#include "system/iothread.h"
|
||||
|
||||
/*
|
||||
* Supported types:
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "qapi/qmp/qdict.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "qemu/option.h"
|
||||
#include "sysemu/qtest.h"
|
||||
#include "system/qtest.h"
|
||||
#include "trace.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* QMP commands related to the monitor (common to sysemu and tools)
|
||||
* QMP commands related to the monitor (common to system and tools)
|
||||
*
|
||||
* Copyright (c) 2003-2004 Fabrice Bellard
|
||||
*
|
||||
|
|
|
@ -18,11 +18,11 @@
|
|||
#include "monitor-internal.h"
|
||||
#include "monitor/qdev.h"
|
||||
#include "monitor/qmp-helpers.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "sysemu/kvm.h"
|
||||
#include "sysemu/runstate.h"
|
||||
#include "sysemu/runstate-action.h"
|
||||
#include "sysemu/block-backend.h"
|
||||
#include "system/system.h"
|
||||
#include "system/kvm.h"
|
||||
#include "system/runstate.h"
|
||||
#include "system/runstate-action.h"
|
||||
#include "system/block-backend.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qapi/qapi-init-commands.h"
|
||||
#include "qapi/qapi-commands-control.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue