2001-03-15 22:18:20 +03:00
|
|
|
/* $NetBSD: linux_emuldata.h,v 1.3 2001/03/15 19:18:20 manu Exp $ */
|
1998-12-09 00:00:11 +03:00
|
|
|
|
|
|
|
#ifndef _COMMON_LINUX_EMULDATA_H
|
|
|
|
#define _COMMON_LINUX_EMULDATA_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is auxillary data the linux compat code
|
|
|
|
* needs to do its work. A pointer to it is
|
|
|
|
* stored in the emuldata field of the proc
|
2000-11-21 15:21:43 +03:00
|
|
|
* structure.
|
1998-12-09 00:00:11 +03:00
|
|
|
*/
|
|
|
|
struct linux_emuldata {
|
2000-11-21 15:21:43 +03:00
|
|
|
#if notyet
|
2001-03-15 22:18:20 +03:00
|
|
|
sigset_t ps_siginfo; /* Which signals have a RT handler */
|
2000-11-21 15:21:43 +03:00
|
|
|
#endif
|
2001-03-15 22:18:20 +03:00
|
|
|
int debugreg[8]; /* GDB information for ptrace - for use, */
|
|
|
|
/* see ../arch/i386/linux_ptrace.c */
|
|
|
|
caddr_t p_break; /* Processes' idea of break */
|
1998-12-09 00:00:11 +03:00
|
|
|
};
|
|
|
|
#endif /* !_COMMON_LINUX_EMULDATA_H */
|