Date: Sat, 10 Jul 2004 17:47:22 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha gdb_machdep.c src/sys/alpha/include gdb_machdep.h src/sys/amd64/amd64 gdb_machdep.c src/sys/amd64/include gdb_machdep.h src/sys/i386/i386... Message-ID: <200407101747.i6AHlMJu033711@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
marcel 2004-07-10 17:47:22 UTC FreeBSD src repository Added files: sys/alpha/alpha gdb_machdep.c sys/alpha/include gdb_machdep.h sys/amd64/amd64 gdb_machdep.c sys/amd64/include gdb_machdep.h sys/i386/i386 gdb_machdep.c sys/i386/include gdb_machdep.h sys/ia64/ia64 gdb_machdep.c sys/ia64/include gdb_machdep.h sys/sparc64/sparc64 gdb_machdep.c sys/sparc64/include gdb_machdep.h sys/gdb gdb.h gdb_int.h gdb_main.c gdb_packet.c Log: Introduce the GDB debugger backend for the new KDB framework. The backend improves over the old GDB support in the following ways: o Unified implementation with minimal MD code. o A simple interface for devices to register themselves as debug ports, ala consoles. o Compression by using run-length encoding. o Implements GDB threading support. Revision Changes Path 1.1 +101 -0 src/sys/alpha/alpha/gdb_machdep.c (new) 1.1 +52 -0 src/sys/alpha/include/gdb_machdep.h (new) 1.1 +84 -0 src/sys/amd64/amd64/gdb_machdep.c (new) 1.1 +57 -0 src/sys/amd64/include/gdb_machdep.h (new) 1.1 +62 -0 src/sys/gdb/gdb.h (new) 1.1 +109 -0 src/sys/gdb/gdb_int.h (new) 1.1 +261 -0 src/sys/gdb/gdb_main.c (new) 1.1 +289 -0 src/sys/gdb/gdb_packet.c (new) 1.1 +90 -0 src/sys/i386/i386/gdb_machdep.c (new) 1.1 +52 -0 src/sys/i386/include/gdb_machdep.h (new) 1.1 +177 -0 src/sys/ia64/ia64/gdb_machdep.c (new) 1.1 +54 -0 src/sys/ia64/include/gdb_machdep.h (new) 1.1 +57 -0 src/sys/sparc64/include/gdb_machdep.h (new) 1.1 +70 -0 src/sys/sparc64/sparc64/gdb_machdep.c (new)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200407101747.i6AHlMJu033711>