|
|
| File: [Development] / linux-2.6-xfs / arch / um / os-Linux / sys-x86_64 / signal.c (download)
Revision 1.2, Thu May 24 16:41:45 2007 UTC (10 years, 4 months ago) by tes.longdrop.melbourne.sgi.com
Merge up to 2.6.22-rc2 Merge of 2.6.x-xfs-melb:linux:28675b by kenmcd. |
/*
* 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);
}