summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2007-10-19 18:11:19 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2007-10-19 18:11:19 +0000
commit52a27a1c87a426e7413c9e3111424afe158871aa (patch)
tree5e21bc4043c3db5e526a8d84333c7dcb84b14a7b /sys/arch
parent427059d75bab66fe1efef854f6525207b1aaaeae (diff)
remove vars from some prototypes.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/include/db_machdep.h6
-rw-r--r--sys/arch/i386/include/db_machdep.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/amd64/include/db_machdep.h b/sys/arch/amd64/include/db_machdep.h
index 3ddbe67c75e..57da262af56 100644
--- a/sys/arch/amd64/include/db_machdep.h
+++ b/sys/arch/amd64/include/db_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.h,v 1.6 2006/03/15 15:50:41 mickey Exp $ */
+/* $OpenBSD: db_machdep.h,v 1.7 2007/10/19 18:11:18 fgsch Exp $ */
/* $NetBSD: db_machdep.h,v 1.2 2003/04/29 17:06:04 scw Exp $ */
/*
@@ -104,8 +104,8 @@ int kdb_trap(int, int, db_regs_t *);
void db_machine_init(void);
int db_enter_ddb(void);
-void db_startcpu(int cpu);
-void db_stopcpu(int cpu);
+void db_startcpu(int);
+void db_stopcpu(int);
void x86_ipi_db(struct cpu_info *);
extern struct mutex ddb_mp_mutex;
diff --git a/sys/arch/i386/include/db_machdep.h b/sys/arch/i386/include/db_machdep.h
index 26679bb1493..485a924ec22 100644
--- a/sys/arch/i386/include/db_machdep.h
+++ b/sys/arch/i386/include/db_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.h,v 1.17 2006/11/29 22:40:13 miod Exp $ */
+/* $OpenBSD: db_machdep.h,v 1.18 2007/10/19 18:11:18 fgsch Exp $ */
/* $NetBSD: db_machdep.h,v 1.9 1996/05/03 19:23:59 christos Exp $ */
/*
@@ -105,8 +105,8 @@ int kdb_trap(int, int, db_regs_t *);
void db_machine_init(void);
int db_enter_ddb(void);
-void db_startcpu(int cpu);
-void db_stopcpu(int cpu);
+void db_startcpu(int);
+void db_stopcpu(int);
void i386_ipi_db(struct cpu_info *);
extern struct mutex ddb_mp_mutex;