2 * Copyright (C) 2006 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
8 extern void handle_signal(int sig
, struct sigcontext
*sc
);
10 void hard_handler(int sig
)
13 asm("movq %%rdx, %0" : "=r" (uc
));
15 handle_signal(sig
, (struct sigcontext
*) &uc
->uc_mcontext
);