mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
correct the signal's name
The signal's name is wrong... Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
This commit is contained in:
parent
e19cdbfcf1
commit
85d5fb19b1
@ -365,10 +365,10 @@ int vshRunConsole(virDomainPtr dom, const char *devname)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Restore original signal handlers */
|
/* Restore original signal handlers */
|
||||||
signal(SIGQUIT, old_sigpipe);
|
signal(SIGPIPE, old_sigpipe);
|
||||||
signal(SIGQUIT, old_sighup);
|
signal(SIGHUP, old_sighup);
|
||||||
signal(SIGQUIT, old_sigint);
|
signal(SIGINT, old_sigint);
|
||||||
signal(SIGQUIT, old_sigterm);
|
signal(SIGTERM, old_sigterm);
|
||||||
signal(SIGQUIT, old_sigquit);
|
signal(SIGQUIT, old_sigquit);
|
||||||
|
|
||||||
resettty:
|
resettty:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user