aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/os-Linux/sys-i386/signal.c
blob: f311609f93daaf7079476a067e2e2ab24bc8a202 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * 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));
}