diff options
author | Paolo Bonzini | 2016-10-24 10:52:35 +0200 |
---|---|---|
committer | Paolo Bonzini | 2017-01-16 17:52:35 +0100 |
commit | 858d436665519095eb593081f8efd68ddc579b45 (patch) | |
tree | 53642fc61c25e7793c7b82064cfd3c017a6d9cab /stubs/Makefile.objs | |
parent | stubs: group stubs for user-mode emulation (diff) | |
download | qemu-858d436665519095eb593081f8efd68ddc579b45.tar.gz qemu-858d436665519095eb593081f8efd68ddc579b45.tar.xz qemu-858d436665519095eb593081f8efd68ddc579b45.zip |
stubs: group all monitor_fdset_* functions in a single file
It makes little sense to implement only one of them, so avoid
proliferation of stubs files.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'stubs/Makefile.objs')
-rw-r--r-- | stubs/Makefile.objs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index 1eec1fb9a1..40b4e15564 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -10,10 +10,7 @@ stub-obj-y += cpu-get-clock.o stub-obj-y += cpu-get-icount.o stub-obj-y += dump.o stub-obj-y += error-printf.o -stub-obj-y += fdset-add-fd.o -stub-obj-y += fdset-find-fd.o -stub-obj-y += fdset-get-fd.o -stub-obj-y += fdset-remove-fd.o +stub-obj-y += fdset.o stub-obj-y += gdbstub.o stub-obj-y += get-vm-name.o stub-obj-y += iothread.o |