Module Name: src
Committed By: jmcneill
Date: Fri Jul 3 10:19:18 UTC 2020
Modified Files:
src/sys/arch/arm/arm32: db_machdep.c
src/sys/arch/arm/include/arm32: db_machdep.h
Log Message:
Move db_reset_cmd prototype to db_machdep.h (forgot to commit this file)
To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/arm/arm32/db_machdep.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/include/arm32/db_machdep.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/arm32/db_machdep.c
diff -u src/sys/arch/arm/arm32/db_machdep.c:1.33 src/sys/arch/arm/arm32/db_machdep.c:1.34
--- src/sys/arch/arm/arm32/db_machdep.c:1.33 Fri Jul 3 06:13:00 2020
+++ src/sys/arch/arm/arm32/db_machdep.c Fri Jul 3 10:19:18 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: db_machdep.c,v 1.33 2020/07/03 06:13:00 skrll Exp $ */
+/* $NetBSD: db_machdep.c,v 1.34 2020/07/03 10:19:18 jmcneill Exp $ */
/*
* Copyright (c) 1996 Mark Brinicombe
@@ -34,7 +34,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_machdep.c,v 1.33 2020/07/03 06:13:00 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_machdep.c,v 1.34 2020/07/03 10:19:18 jmcneill Exp $");
#include <sys/param.h>
@@ -61,7 +61,6 @@ __KERNEL_RCSID(0, "$NetBSD: db_machdep.c
#ifdef _KERNEL
static long nil;
-void db_reset_cmd(db_expr_t, bool, db_expr_t, const char *);
void db_md_cpuinfo_cmd(db_expr_t, bool, db_expr_t, const char *);
int db_access_und_sp(const struct db_variable *, db_expr_t *, int);
Index: src/sys/arch/arm/include/arm32/db_machdep.h
diff -u src/sys/arch/arm/include/arm32/db_machdep.h:1.9 src/sys/arch/arm/include/arm32/db_machdep.h:1.10
--- src/sys/arch/arm/include/arm32/db_machdep.h:1.9 Fri Mar 28 21:54:12 2014
+++ src/sys/arch/arm/include/arm32/db_machdep.h Fri Jul 3 10:19:18 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: db_machdep.h,v 1.9 2014/03/28 21:54:12 matt Exp $ */
+/* $NetBSD: db_machdep.h,v 1.10 2020/07/03 10:19:18 jmcneill Exp $ */
#ifndef _ARM32_DB_MACHDEP_H_
#define _ARM32_DB_MACHDEP_H_
@@ -7,6 +7,7 @@
void db_show_frame_cmd(db_expr_t, bool, db_expr_t, const char *);
void db_show_fault_cmd(db_expr_t, bool, db_expr_t, const char *);
+void db_reset_cmd(db_expr_t, bool, db_expr_t, const char *);
#ifdef _KERNEL
void db_show_tlb_cmd(db_expr_t, bool, db_expr_t, const char *);
#endif