diff options
-rw-r--r-- | sys/arch/mac68k/include/pcb.h | 3 | ||||
-rw-r--r-- | sys/arch/mac68k/include/proc.h | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/mac68k/include/pcb.h b/sys/arch/mac68k/include/pcb.h index c726427522e..2dd796997db 100644 --- a/sys/arch/mac68k/include/pcb.h +++ b/sys/arch/mac68k/include/pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcb.h,v 1.4 1997/11/30 06:12:32 gene Exp $ */ +/* $OpenBSD: pcb.h,v 1.5 2003/02/24 01:13:11 miod Exp $ */ /* $NetBSD: pcb.h,v 1.7 1996/05/05 06:17:51 briggs Exp $ */ /* @@ -93,7 +93,6 @@ struct pcb int pcb_regs[12]; /* D2-D7, A2-A7 (+C) */ caddr_t pcb_onfault; /* for copyin/out faults */ struct fpframe pcb_fpregs; /* 68881/2 context save area */ - int pcb_exec[16]; /* exec structure for core dumps */ }; /* flags */ diff --git a/sys/arch/mac68k/include/proc.h b/sys/arch/mac68k/include/proc.h index d6b099d1ecf..baf1956d982 100644 --- a/sys/arch/mac68k/include/proc.h +++ b/sys/arch/mac68k/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.4 1997/11/30 06:10:33 gene Exp $ */ +/* $OpenBSD: proc.h,v 1.5 2003/02/24 01:13:11 miod Exp $ */ /* $NetBSD: proc.h,v 1.5 1994/10/26 08:46:40 cgd Exp $ */ /* @@ -43,8 +43,8 @@ #define _MAC68K_PROC_H_ struct mdproc { - int md_flags; /* machine-dependent flags */ int *md_regs; /* registers on current frame */ + int md_flags; /* machine-dependent flags */ }; /* md_flags */ |