1 /*	$NetBSD: linux_emuldata.h,v 1.4 2002/02/15 16:48:02 christos 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