Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/amd64/amd64 adjust for new hexdump signature



details:   https://anonhg.NetBSD.org/src/rev/492eb289a711
branches:  trunk
changeset: 828341:492eb289a711
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Dec 09 00:52:41 2017 +0000

description:
adjust for new hexdump signature

diffstat:

 sys/arch/amd64/amd64/trap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ce755d7c637d -r 492eb289a711 sys/arch/amd64/amd64/trap.c
--- a/sys/arch/amd64/amd64/trap.c       Sat Dec 09 00:51:52 2017 +0000
+++ b/sys/arch/amd64/amd64/trap.c       Sat Dec 09 00:52:41 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.108 2017/12/08 21:52:21 christos Exp $      */
+/*     $NetBSD: trap.c,v 1.109 2017/12/09 00:52:41 christos Exp $      */
 
 /*
  * Copyright (c) 1998, 2000, 2017 The NetBSD Foundation, Inc.
@@ -64,7 +64,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.108 2017/12/08 21:52:21 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.109 2017/12/09 00:52:41 christos Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -815,7 +815,7 @@
            tf->tf_fs & 0xffff, tf->tf_gs & 0xffff, tf->tf_ss & 0xffff);
        printf("fsbase %#018lx gsbase %#018lx\n", pcb->pcb_fs, pcb->pcb_gs);
        printf("\n");
-       hexdump("Stack dump", tf, 256);
+       hexdump(printf, "Stack dump", tf, 256);
 }
 
 static void



Home | Main Index | Thread Index | Old Index