diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-17 20:44:46 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-17 20:44:46 +0000 |
commit | b6d2dc67cb7febaf6300ab06a0f2bdbf53eb6023 (patch) | |
tree | a883fefb4b1c4fb68727d584c5e3e12eb5eaeb8b | |
parent | a9073e9adc8f80fbe2d95c07c2e615903c061d05 (diff) |
Remove unused struct mdproc fields.
-rw-r--r-- | sys/arch/powerpc/include/proc.h | 3 | ||||
-rw-r--r-- | sys/arch/vax/include/proc.h | 9 |
2 files changed, 2 insertions, 10 deletions
diff --git a/sys/arch/powerpc/include/proc.h b/sys/arch/powerpc/include/proc.h index 1582ddd1a12..dad0ab7bba2 100644 --- a/sys/arch/powerpc/include/proc.h +++ b/sys/arch/powerpc/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.3 2001/09/01 15:49:05 drahn Exp $ */ +/* $OpenBSD: proc.h,v 1.4 2006/04/17 20:44:43 miod Exp $ */ /* $NetBSD: proc.h,v 1.1 1996/09/30 16:34:31 ws Exp $ */ /*- @@ -39,7 +39,6 @@ * Machine-dependent part of the proc structure */ struct mdproc { - int dummy; }; #endif /* _POWERPC_PROC_H_ */ diff --git a/sys/arch/vax/include/proc.h b/sys/arch/vax/include/proc.h index 9c71621c1f4..c7185d0532d 100644 --- a/sys/arch/vax/include/proc.h +++ b/sys/arch/vax/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.4 2003/06/02 23:27:57 millert Exp $ */ +/* $OpenBSD: proc.h,v 1.5 2006/04/17 20:44:45 miod Exp $ */ /* $NetBSD: proc.h,v 1.2 1994/10/26 08:02:21 cgd Exp $ */ /* @@ -36,11 +36,4 @@ * Machine-dependent part of the proc structure for vax. */ struct mdproc { - int md_flags; /* machine-dependent flags */ -#if 0 - int *md_regs; /* registers on current frame */ -#endif }; - -/* md_flags */ -#define MDP_AST 0x0001 /* async trap pending */ |