Fix building crash(8) on sparc after ufetch / ustore changes.

This commit is contained in:
thorpej 2019-04-06 16:22:01 +00:00
parent d4126f8d80
commit 2dd13abc5d
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_trace.c,v 1.36 2019/04/06 03:06:27 thorpej Exp $ */ /* $NetBSD: db_trace.c,v 1.37 2019/04/06 16:22:01 thorpej Exp $ */
/* /*
* Mach Operating System * Mach Operating System
@ -27,11 +27,12 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: db_trace.c,v 1.36 2019/04/06 03:06:27 thorpej Exp $"); __KERNEL_RCSID(0, "$NetBSD: db_trace.c,v 1.37 2019/04/06 16:22:01 thorpej Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/proc.h> #include <sys/proc.h>
#include <sys/cpu.h> #include <sys/cpu.h>
#include <sys/systm.h>
#include <machine/db_machdep.h> #include <machine/db_machdep.h>
@ -51,6 +52,7 @@ __KERNEL_RCSID(0, "$NetBSD: db_trace.c,v 1.36 2019/04/06 03:06:27 thorpej Exp $"
#define ONINTSTACK(fr) (0) #define ONINTSTACK(fr) (0)
#endif #endif
#ifdef _KERNEL
static db_addr_t static db_addr_t
db_fetch_word(const void *uaddr) db_fetch_word(const void *uaddr)
{ {
@ -60,6 +62,7 @@ db_fetch_word(const void *uaddr)
val = (u_int)-1; val = (u_int)-1;
return val; return val;
} }
#endif /* _KERNEL */
void void
db_stack_trace_print(db_expr_t addr, bool have_addr, db_stack_trace_print(db_expr_t addr, bool have_addr,