This website requires JavaScript.
Explore
Help
Register
Sign In
xemu-project
/
xemu
Watch
1
Star
0
Fork
0
You've already forked xemu
mirror of
https://github.com/xemu-project/xemu.git
synced
2024-11-24 20:19:44 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
2811ac3059
xemu
/
monitor
/
Makefile.objs
4 lines
92 B
Makefile
Raw
Normal View
History
Unescape
Escape
Move monitor.c to monitor/misc.c Create a new monitor/ subdirectory and move monitor.c there. As the plan is to move the monitor core into separate files, use the chance to rename it to misc.c. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190613153405.24769-8-kwolf@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
2019-06-13 15:33:57 +00:00
obj-y
+=
misc.o
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>
2019-06-13 15:34:02 +00:00
common-obj-y
+=
monitor.o qmp.o hmp.o
monitor: Move {hmp, qmp}.c to monitor/{hmp, qmp}-cmds.c Now that we have a monitor/ subdirectory, let's move hmp.c and qmp.c from the root directory there. As they contain implementations of monitor commands, rename them to {hmp,qmp}-cmds.c, so that {hmp,qmp}.c are free for the HMP and QMP infrastructure. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190613153405.24769-9-kwolf@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
2019-06-13 15:33:58 +00:00
common-obj-y
+=
qmp-cmds.o hmp-cmds.o
Reference in New Issue
Copy Permalink