comment out ps_siginfo from struct emuldata for now, add int debugreg[8]
update comment a bit
This commit is contained in:
parent
3a384146be
commit
33d7a60ccc
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: linux_emuldata.h,v 1.1 1998/12/08 21:00:11 erh Exp $ */
|
/* $NetBSD: linux_emuldata.h,v 1.2 2000/11/21 12:21:43 jdolecek Exp $ */
|
||||||
|
|
||||||
#ifndef _COMMON_LINUX_EMULDATA_H
|
#ifndef _COMMON_LINUX_EMULDATA_H
|
||||||
#define _COMMON_LINUX_EMULDATA_H
|
#define _COMMON_LINUX_EMULDATA_H
|
||||||
|
@ -7,9 +7,14 @@
|
||||||
* This is auxillary data the linux compat code
|
* This is auxillary data the linux compat code
|
||||||
* needs to do its work. A pointer to it is
|
* needs to do its work. A pointer to it is
|
||||||
* stored in the emuldata field of the proc
|
* stored in the emuldata field of the proc
|
||||||
* structure. (NOTYET)
|
* structure.
|
||||||
*/
|
*/
|
||||||
struct linux_emuldata {
|
struct linux_emuldata {
|
||||||
|
#if notyet
|
||||||
sigset_t ps_siginfo; /* Which signals have a RT handler */
|
sigset_t ps_siginfo; /* Which signals have a RT handler */
|
||||||
|
#endif
|
||||||
|
int debugreg[8]; /* GDB information for ptrace - for use,
|
||||||
|
* see ../arch/i386/linux_ptrace.c */
|
||||||
|
|
||||||
};
|
};
|
||||||
#endif /* !_COMMON_LINUX_EMULDATA_H */
|
#endif /* !_COMMON_LINUX_EMULDATA_H */
|
||||||
|
|
Loading…
Reference in New Issue