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
6
vl.c
6
vl.c
@ -3059,9 +3059,6 @@ int main(int argc, char **argv, char **envp)
|
|||||||
|
|
||||||
cpu_synchronize_all_post_init();
|
cpu_synchronize_all_post_init();
|
||||||
|
|
||||||
/* must be after terminal init, SDL library changes signal handlers */
|
|
||||||
os_setup_signal_handling();
|
|
||||||
|
|
||||||
set_numa_modes();
|
set_numa_modes();
|
||||||
|
|
||||||
current_machine = machine;
|
current_machine = machine;
|
||||||
@ -3117,6 +3114,9 @@ int main(int argc, char **argv, char **envp)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* must be after terminal init, SDL library changes signal handlers */
|
||||||
|
os_setup_signal_handling();
|
||||||
|
|
||||||
#ifdef CONFIG_VNC
|
#ifdef CONFIG_VNC
|
||||||
/* init remote displays */
|
/* init remote displays */
|
||||||
if (vnc_display) {
|
if (vnc_display) {
|
||||||
|
Loading…
Reference in New Issue
Block a user