[BACK]Return to signal.c CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / um / os-Linux / sys-i386

File: [Development] / linux-2.6-xfs / arch / um / os-Linux / sys-i386 / 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
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +3 -5 lines

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)
{
	handle_signal(sig, (struct sigcontext *) (&sig + 1));
}