[PATCH] uml: signal initialization cleanup
It turns out that init_new_thread_signals is always called with altstack == 1, so we can eliminate the parameter. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
9914aee827
commit
e64bd13408
@@ -21,7 +21,7 @@
|
||||
static int exec_tramp(void *sig_stack)
|
||||
{
|
||||
init_new_thread_stack(sig_stack, NULL);
|
||||
init_new_thread_signals(1);
|
||||
init_new_thread_signals();
|
||||
os_stop_process(os_getpid());
|
||||
return(0);
|
||||
}
|
||||
|
Reference in New Issue
Block a user