Source-Changes-HG archive

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

[src/trunk]: src/gnu/usr.bin/gdb53/arch/x86_64 Add NetBSD kcore support.



details:   https://anonhg.NetBSD.org/src/rev/6e0e33f4c8ec
branches:  trunk
changeset: 553346:6e0e33f4c8ec
user:      fvdl <fvdl%NetBSD.org@localhost>
date:      Tue Oct 14 22:59:59 2003 +0000

description:
Add NetBSD kcore support.

diffstat:

 gnu/usr.bin/gdb53/arch/x86_64/defs.mk |  3 ++-
 gnu/usr.bin/gdb53/arch/x86_64/init.c  |  2 ++
 2 files changed, 4 insertions(+), 1 deletions(-)

diffs (36 lines):

diff -r 49b02ff5e688 -r 6e0e33f4c8ec gnu/usr.bin/gdb53/arch/x86_64/defs.mk
--- a/gnu/usr.bin/gdb53/arch/x86_64/defs.mk     Tue Oct 14 22:58:38 2003 +0000
+++ b/gnu/usr.bin/gdb53/arch/x86_64/defs.mk     Tue Oct 14 22:59:59 2003 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: defs.mk,v 1.1 2003/10/14 02:03:51 fvdl Exp $
+# $NetBSD: defs.mk,v 1.2 2003/10/14 22:59:59 fvdl Exp $
 G_GDB_OBJS=\
 annotate.o \
 arch-utils.o \
@@ -69,6 +69,7 @@
 jv-typeprint.o \
 jv-valprint.o \
 kod-cisco.o \
+kcore-nbsd.o \
 kod.o \
 language.o \
 linespec.o \
diff -r 49b02ff5e688 -r 6e0e33f4c8ec gnu/usr.bin/gdb53/arch/x86_64/init.c
--- a/gnu/usr.bin/gdb53/arch/x86_64/init.c      Tue Oct 14 22:58:38 2003 +0000
+++ b/gnu/usr.bin/gdb53/arch/x86_64/init.c      Tue Oct 14 22:59:59 2003 +0000
@@ -59,6 +59,7 @@
 extern initialize_file_ftype _initialize_mipsread;
 extern initialize_file_ftype _initialize_stabsread;
 extern initialize_file_ftype _initialize_core;
+extern initialize_file_ftype _initialize_kcore_nbsd;
 extern initialize_file_ftype _initialize_c_language;
 extern initialize_file_ftype _initialize_f_language;
 extern initialize_file_ftype _initialize_ui_out;
@@ -146,6 +147,7 @@
   _initialize_mipsread ();
   _initialize_stabsread ();
   _initialize_core ();
+  _initialize_kcore_nbsd ();
   _initialize_c_language ();
   _initialize_f_language ();
   _initialize_ui_out ();



Home | Main Index | Thread Index | Old Index