Move db_reset_cmd prototype to db_machdep.h (forgot to commit this file)

This commit is contained in:
jmcneill 2020-07-03 10:19:18 +00:00
parent 90a4c7d338
commit 7c5cd4a6aa
2 changed files with 4 additions and 4 deletions

View File

@ -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,v 1.33 2020/07/03 06:13:00 skrll Exp $"
#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);

View File

@ -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