Home | History | Annotate | Line # | Download | only in common
linux_emuldata.h revision 1.2
      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