diff options
author | Lukas Straub | 2021-03-23 18:52:46 +0100 |
---|---|---|
committer | Marc-André Lureau | 2021-04-01 13:27:44 +0200 |
commit | e0150291ec87234e1c3d01eb9ad4c6315f5306c4 (patch) | |
tree | 948ae700864478e4f7d4e11565c5f3405239a2c7 /stubs | |
parent | yank: Remove dependency on qiochannel (diff) | |
download | qemu-e0150291ec87234e1c3d01eb9ad4c6315f5306c4.tar.gz qemu-e0150291ec87234e1c3d01eb9ad4c6315f5306c4.tar.xz qemu-e0150291ec87234e1c3d01eb9ad4c6315f5306c4.zip |
yank: Always link full yank code
Yank now only depends on util and can be always linked in. Also remove
the stubs as they are not needed anymore.
Signed-off-by: Lukas Straub <lukasstraub2@web.de>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <997aa12a28c555d8a3b7a363b3bda5c3cf1821ba.1616521341.git.lukasstraub2@web.de>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/meson.build | 1 | ||||
-rw-r--r-- | stubs/yank.c | 23 |
2 files changed, 0 insertions, 24 deletions
diff --git a/stubs/meson.build b/stubs/meson.build index 8a3e804cf0..be6f6d609e 100644 --- a/stubs/meson.build +++ b/stubs/meson.build @@ -46,7 +46,6 @@ stub_ss.add(files('vm-stop.c')) stub_ss.add(files('win32-kbd-hook.c')) stub_ss.add(files('cpu-synchronize-state.c')) if have_block - stub_ss.add(files('yank.c')) stub_ss.add(files('replay-tools.c')) endif if have_system diff --git a/stubs/yank.c b/stubs/yank.c deleted file mode 100644 index 11b24fc057..0000000000 --- a/stubs/yank.c +++ /dev/null @@ -1,23 +0,0 @@ -#include "qemu/osdep.h" -#include "qemu/yank.h" - -bool yank_register_instance(const YankInstance *instance, Error **errp) -{ - return true; -} - -void yank_unregister_instance(const YankInstance *instance) -{ -} - -void yank_register_function(const YankInstance *instance, - YankFn *func, - void *opaque) -{ -} - -void yank_unregister_function(const YankInstance *instance, - YankFn *func, - void *opaque) -{ -} |