blob: 1081611f25b589bfc887ee18709064a0b698dc56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $OpenBSD: netbsd_machdep.h,v 1.1 2001/09/06 10:45:41 art Exp $ */
#ifndef _NETBSD_MACHDEP_H
#define _NETBSD_MACHDEP_H
struct netbsd_sigcontext {
int sc_onstack;
int __sc_mask13;
long sc_sp;
long sc_pc;
long sc_npc;
long sc_tstate;
long sc_g1;
long sc_o0;
netbsd_sigset_t sc_mask;
};
#ifdef _KERNEL
void netbsd_sendsig __P((sig_t, int, int, u_long, int, union sigval));
#endif
#endif /* _NETBSD_MACHDEP_H */
|