repo.or.cz
/
wrt350n-kernel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ACPI: thinkpad-acpi: bump up version to 0.16
[wrt350n-kernel.git]
/
arch
/
um
/
os-Linux
/
sys-i386
/
signal.c
blob
f311609f93daaf7079476a067e2e2ab24bc8a202
1
/*
2
* Copyright (C) 2006 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3
* Licensed under the GPL
4
*/
5
6
#include <signal.h>
7
8
extern
void
handle_signal
(
int
sig
,
struct
sigcontext
*
sc
);
9
10
void
hard_handler
(
int
sig
)
11
{
12
handle_signal
(
sig
, (
struct
sigcontext
*) (&
sig
+
1
));
13
}