diff options
author | Kevin Wolf <kwolf@redhat.com> | 2019-06-13 17:34:02 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-06-18 08:14:17 +0200 |
commit | 1d95db745b78439e9eec0782eca9cc0d679d6224 (patch) | |
tree | 95232e019ec3b8c794a6dd3c8e3e925c9227b979 /monitor/trace-events | |
parent | ed7bda5d07b655a4056fc579d06150f95dbe8738 (diff) | |
download | qemu-1d95db745b78439e9eec0782eca9cc0d679d6224.zip qemu-1d95db745b78439e9eec0782eca9cc0d679d6224.tar.gz qemu-1d95db745b78439e9eec0782eca9cc0d679d6224.tar.bz2 |
monitor: Split out monitor/monitor.c
Move the monitor core infrastructure from monitor/misc.c to
monitor/monitor.c. This is code that can be shared for all targets, so
compile it only once.
What remains in monitor/misc.c after this patch is mostly monitor
command implementations (which could move to hmp-cmds.c or qmp-cmds.c
later) and code that requires a system emulator or is even
target-dependent (including HMP command completion code).
The amount of function and particularly extern variables in
monitor_int.h is probably a bit larger than it needs to be, but this way
no non-trivial code modifications are needed. The interfaces between all
monitor parts can be cleaned up later.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20190613153405.24769-13-kwolf@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
[Superfluous #include dropped]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'monitor/trace-events')
-rw-r--r-- | monitor/trace-events | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/trace-events b/monitor/trace-events index 2285d26..0365ac4 100644 --- a/monitor/trace-events +++ b/monitor/trace-events @@ -3,7 +3,7 @@ # hmp.c handle_hmp_command(void *mon, const char *cmdline) "mon %p cmdline: %s" -# misc.c +# monitor.c monitor_protocol_event_handler(uint32_t event, void *qdict) "event=%d data=%p" monitor_protocol_event_emit(uint32_t event, void *data) "event=%d data=%p" monitor_protocol_event_queue(uint32_t event, void *qdict, uint64_t rate) "event=%d data=%p rate=%" PRId64 |