2 * Copyright (C) 2006 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL
8 extern void (*handlers
[])(int sig
, struct sigcontext
*sc
);
10 void hard_handler(int sig
)
12 struct sigcontext
*sc
= (struct sigcontext
*) (&sig
+ 1);
14 (*handlers
[sig
])(sig
, sc
);