diff options
author | Markus Armbruster <armbru@redhat.com> | 2023-01-24 13:19:46 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2023-02-04 07:56:54 +0100 |
commit | 864a3fa439276148b6d7abcf2d43ee8dbe4c4062 (patch) | |
tree | bf371029d986111b18bb0f2b14b812f3d7ba93e6 /monitor | |
parent | 9d2b5f2ce4c7913406f7d17aafcf2f71757e49d8 (diff) |
monitor: Rename misc.c to hmp-target.c
What's left in misc.c is exactly the target-dependent part of the HMP
core. Rename accordingly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20230124121946.1139465-33-armbru@redhat.com>
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/hmp-target.c (renamed from monitor/misc.c) | 2 | ||||
-rw-r--r-- | monitor/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/monitor/misc.c b/monitor/hmp-target.c index 99317a8ff4..1eb72ac1bf 100644 --- a/monitor/misc.c +++ b/monitor/hmp-target.c @@ -1,5 +1,5 @@ /* - * QEMU monitor + * QEMU monitor, target-dependent part * * Copyright (c) 2003-2004 Fabrice Bellard * diff --git a/monitor/meson.build b/monitor/meson.build index 795a271545..ccb4d1a8e6 100644 --- a/monitor/meson.build +++ b/monitor/meson.build @@ -8,4 +8,4 @@ softmmu_ss.add(files( softmmu_ss.add([spice_headers, files('qmp-cmds.c')]) specific_ss.add(when: 'CONFIG_SOFTMMU', - if_true: [files( 'hmp-cmds-target.c', 'misc.c'), spice]) + if_true: [files( 'hmp-cmds-target.c', 'hmp-target.c'), spice]) |