blob: a305ed4ffdde76cf6b40b644f7b4c9b81cb1f18c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $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)
|