diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2023-09-01 13:12:58 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-09-01 23:46:20 +0200 |
commit | 8a768db16afacf2056a753b99b81a5855c3320fa (patch) | |
tree | 2070fbb62059e501e5b1895f7f209ff629d6914d /include/sysemu/os-posix.h | |
parent | 5b15639003a267b8254ae597a0b8bfefe36ced7b (diff) | |
download | qemu-8a768db16afacf2056a753b99b81a5855c3320fa.zip qemu-8a768db16afacf2056a753b99b81a5855c3320fa.tar.gz qemu-8a768db16afacf2056a753b99b81a5855c3320fa.tar.bz2 |
os-posix.c, softmmu/vl.c: move os_parse_cmd_args() into qemu_init()
This will stop linking softmmu-specific os_parse_cmd_args() into every
qemu executable which happens to use other functions from os-posix.c,
such as os_set_line_buffering() or os_setup_signal_handling().
Also, since there's no win32-specific options, *all* option parsing is
now done in softmmu/vl.c:qemu_init(), which is easier to read without
extra indirection, - all options are in the single function now.
This effectively reverts commit 59a5264b99434.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-ID: <20230901101302.3618955-5-mjt@tls.msk.ru>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/sysemu/os-posix.h')
-rw-r--r-- | include/sysemu/os-posix.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/sysemu/os-posix.h b/include/sysemu/os-posix.h index 8a66763..6dfdcbb 100644 --- a/include/sysemu/os-posix.h +++ b/include/sysemu/os-posix.h @@ -42,7 +42,6 @@ extern "C" { #endif -int os_parse_cmd_args(int index, const char *optarg); void os_set_line_buffering(void); void os_setup_early_signal_handling(void); void os_set_proc_name(const char *s); |