uml: separate timer initialization
Move timer signal initialization from init_irq_signals to a new function, timer_init. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
a2f018bf38
commit
78a26e25ce
@@ -145,10 +145,6 @@ void init_irq_signals(int on_sigstack)
|
||||
|
||||
flags = on_sigstack ? SA_ONSTACK : 0;
|
||||
|
||||
set_handler(SIGVTALRM, (__sighandler_t) alarm_handler,
|
||||
flags | SA_RESTART, SIGUSR1, SIGIO, SIGWINCH, SIGALRM, -1);
|
||||
set_handler(SIGALRM, (__sighandler_t) alarm_handler,
|
||||
flags | SA_RESTART, SIGUSR1, SIGIO, SIGWINCH, SIGALRM, -1);
|
||||
set_handler(SIGIO, (__sighandler_t) sig_handler, flags | SA_RESTART,
|
||||
SIGUSR1, SIGIO, SIGWINCH, SIGALRM, SIGVTALRM, -1);
|
||||
signal(SIGWINCH, SIG_IGN);
|
||||
|
Reference in New Issue
Block a user