xref: /netbsd-src/sys/compat/linux/common/linux_emuldata.h (revision 3cec974c61d7fac0a37c0377723a33214a458c8b)
1 /*	$NetBSD: linux_emuldata.h,v 1.2 2000/11/21 12:21:43 jdolecek 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 
19 };
20 #endif /* !_COMMON_LINUX_EMULDATA_H */
21