xref: /netbsd-src/sys/compat/linux/common/linux_emuldata.h (revision 1ca5c1b28139779176bd5c13ad7c5f25c0bcd5f8)
1 /*	$NetBSD: linux_emuldata.h,v 1.3 2001/03/15 19:18:20 manu Exp $	*/
2 
3 #ifndef _COMMON_LINUX_EMULDATA_H
4 #define _COMMON_LINUX_EMULDATA_H
5 
6 /*
7  * This is auxillary data the linux compat code
8  * needs to do its work.  A pointer to it is
9  * stored in the emuldata field of the proc
10  * structure.
11  */
12 struct linux_emuldata {
13 #if notyet
14 	sigset_t	ps_siginfo;		/* Which signals have a RT handler */
15 #endif
16 	int		debugreg[8];	/* GDB information for ptrace - for use, */
17 	                    		/* see ../arch/i386/linux_ptrace.c */
18 	caddr_t	p_break;			/* Processes' idea of break */
19 };
20 #endif /* !_COMMON_LINUX_EMULDATA_H */
21