diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-19 13:53:15 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-19 13:53:15 +0000 |
commit | c3ada91906fd6634c78316f716fd9056bda53b8c (patch) | |
tree | a818f0a0df066b43412c8bbc7315b261a9606a93 /sys/arch/m68k/include | |
parent | ede88e43b531de70f5e2783e6fc654ee55b2b33b (diff) |
From Gordon W Ross (NetBSD):
Use db_regs_t instead of struct mc68020_saved_state
Diffstat (limited to 'sys/arch/m68k/include')
-rw-r--r-- | sys/arch/m68k/include/db_machdep.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/m68k/include/db_machdep.h b/sys/arch/m68k/include/db_machdep.h index 1374f5e5db3..607f4e7caf7 100644 --- a/sys/arch/m68k/include/db_machdep.h +++ b/sys/arch/m68k/include/db_machdep.h @@ -1,5 +1,5 @@ -/* $OpenBSD: db_machdep.h,v 1.2 1996/05/09 22:25:15 niklas Exp $ */ -/* $NetBSD: db_machdep.h,v 1.13 1996/04/29 20:50:08 leo Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.3 1997/01/19 13:53:09 niklas Exp $ */ +/* $NetBSD: db_machdep.h,v 1.14 1997/01/15 23:11:46 gwr Exp $ */ /* * Mach Operating System @@ -107,8 +107,8 @@ db_regs_t ddb_regs; /* register state */ #ifdef _KERNEL -void kdb_kintr __P((struct mc68020_saved_state *)); -int kdb_trap __P((int, struct mc68020_saved_state *)); +void kdb_kintr __P((db_regs_t *)); +int kdb_trap __P((int, db_regs_t *)); #endif /* _KERNEL */ |