mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
register signal handler after initializing SDL.
SDL library initialization mangles signal handlers, so QEMU should register them after initializing SDL. This was the case before and code even have a comment about that. Fix it to be so again. Signed-off-by: Gleb Natapov <gleb@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
f1d3fb04d5
commit
0ce235a7ee
1 changed files with 3 additions and 3 deletions
6
vl.c
6
vl.c
|
@ -3059,9 +3059,6 @@ int main(int argc, char **argv, char **envp)
|
|||
|
||||
cpu_synchronize_all_post_init();
|
||||
|
||||
/* must be after terminal init, SDL library changes signal handlers */
|
||||
os_setup_signal_handling();
|
||||
|
||||
set_numa_modes();
|
||||
|
||||
current_machine = machine;
|
||||
|
@ -3117,6 +3114,9 @@ int main(int argc, char **argv, char **envp)
|
|||
break;
|
||||
}
|
||||
|
||||
/* must be after terminal init, SDL library changes signal handlers */
|
||||
os_setup_signal_handling();
|
||||
|
||||
#ifdef CONFIG_VNC
|
||||
/* init remote displays */
|
||||
if (vnc_display) {
|
||||
|
|
Loading…
Reference in a new issue