12 lines
345 B
ArmAsm
12 lines
345 B
ArmAsm
|
/* $NetBSD: __sigtramp2.S,v 1.1 2006/09/23 17:39:34 cherry Exp $ */
|
||
|
|
||
|
#include "SYS.h"
|
||
|
|
||
|
/* XXX: Fix this when we look at signal handling */
|
||
|
|
||
|
ENTRY(__sigtramp_siginfo_2, 2)
|
||
|
/* XXX: get pointer to ucontext */
|
||
|
/* setcontext() ie. CALLSYS_NOERROR(setcontext) */
|
||
|
/* get error code */
|
||
|
CALLSYS_NOERROR(exit) /* exit */
|
||
|
END(__sigtramp_siginfo_2)
|