xref: /netbsd-src/sys/compat/linux/common/linux_emuldata.h (revision 481fca6e59249d8ffcf24fef7cfbe7b131bfb080)
1 /*	$NetBSD: linux_emuldata.h,v 1.1 1998/12/08 21:00:11 erh 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. (NOTYET)
11  */
12 struct linux_emuldata {
13     sigset_t	ps_siginfo;		/* Which signals have a RT handler */
14 };
15 #endif /* !_COMMON_LINUX_EMULDATA_H */
16