1 /* $NetBSD: __sigtramp2.S,v 1.2 2020/10/15 05:50:14 skrll Exp $ */ 2 3 #include "SYS.h" 4 5 /* XXX: Fix this when we look at signal handling */ 6 7 ENTRY(__sigtramp_siginfo_2, 2) 8 /* XXX: get pointer to ucontext */ 9 /* setcontext() ie. CALLSYS_NOERROR(setcontext) */ 10 /* get error code */ 11 CALLSYS_NOERROR(exit) /* exit */ 12 END(__sigtramp_siginfo_2) 13