Commit 7eb12255 authored by Al Viro's avatar Al Viro Committed by Richard Weinberger
Browse files

um: merge hard_handler() instances, switch to use of SA_SIGINFO

parent 5d40de0f
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ void set_sigstack(void *sig_stack, int size)

static void (*handlers[_NSIG])(int sig, struct sigcontext *sc);

void handle_signal(int sig, struct sigcontext *sc)
static void handle_signal(int sig, struct sigcontext *sc)
{
	unsigned long pending = 1UL << sig;

@@ -168,7 +168,11 @@ void handle_signal(int sig, struct sigcontext *sc)
	} while (pending);
}

extern void hard_handler(int sig);
static void hard_handler(int sig, siginfo_t *info, void *p)
{
	struct ucontext *uc = p;
	handle_signal(sig, (struct sigcontext *) &uc->uc_mcontext);
}

void set_handler(int sig, void (*handler)(int), int flags, ...)
{
@@ -178,7 +182,7 @@ void set_handler(int sig, void (*handler)(int), int flags, ...)
	int mask;

	handlers[sig] = (void (*)(int, struct sigcontext *)) handler;
	action.sa_handler = hard_handler;
	action.sa_sigaction = hard_handler;

	sigemptyset(&action.sa_mask);

@@ -190,7 +194,7 @@ void set_handler(int sig, void (*handler)(int), int flags, ...)
	if (sig == SIGSEGV)
		flags |= SA_NODEFER;

	action.sa_flags = flags;
	action.sa_flags = flags | SA_SIGINFO;
	action.sa_restorer = NULL;
	if (sigaction(sig, &action, NULL) < 0)
		panic("sigaction failed - errno = %d\n", errno);
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
# Licensed under the GPL
#

obj-y = registers.o signal.o task_size.o tls.o
obj-y = registers.o task_size.o tls.o

USER_OBJS := $(obj-y)

+0 −13
Original line number Diff line number Diff line
/*
 * Copyright (C) 2006 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#include <signal.h>

extern void handle_signal(int sig, struct sigcontext *sc);

void hard_handler(int sig)
{
	handle_signal(sig, (struct sigcontext *) (&sig + 1));
}
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
# Licensed under the GPL
#

obj-y = registers.o prctl.o signal.o task_size.o
obj-y = registers.o prctl.o task_size.o

USER_OBJS := $(obj-y)

+0 −16
Original line number Diff line number Diff line
/*
 * Copyright (C) 2006 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#include <signal.h>

extern void handle_signal(int sig, struct sigcontext *sc);

void hard_handler(int sig)
{
	struct ucontext *uc;
	asm("movq %%rdx, %0" : "=r" (uc));

	handle_signal(sig, (struct sigcontext *) &uc->uc_mcontext);
}