diff options
author | Thomas Huth <thuth@redhat.com> | 2024-01-18 11:37:58 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-01-19 11:38:32 +0100 |
commit | 2582489fecd6042d69e1fa060ab5ff89f4cef550 (patch) | |
tree | 2272a8a0115b7da7d8c738b21459b927a892591d /system | |
parent | 4a6410104491b703116cd12ef18a61d13cb5a23f (diff) | |
download | qemu-2582489fecd6042d69e1fa060ab5ff89f4cef550.zip qemu-2582489fecd6042d69e1fa060ab5ff89f4cef550.tar.gz qemu-2582489fecd6042d69e1fa060ab5ff89f4cef550.tar.bz2 |
qemu-options: Remove the deprecated -async-teardown option
It's been marked as deprecated since QEMU 8.1 (and was only available
since QEMU 8.0 anyway), so it should be fine to remove this now.
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20240118103759.130748-4-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'system')
-rw-r--r-- | system/vl.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/system/vl.c b/system/vl.c index 7e25888..924356f 100644 --- a/system/vl.c +++ b/system/vl.c @@ -3600,12 +3600,6 @@ void qemu_init(int argc, char **argv) case QEMU_OPTION_daemonize: os_set_daemonize(true); break; -#if defined(CONFIG_LINUX) - /* deprecated */ - case QEMU_OPTION_asyncteardown: - init_async_teardown(); - break; -#endif case QEMU_OPTION_run_with: { const char *str; opts = qemu_opts_parse_noisily(qemu_find_opts("run-with"), |