From owner-cvs-all@FreeBSD.ORG Sat Jul 10 17:47:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F4D216A4CE; Sat, 10 Jul 2004 17:47:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AD3143D31; Sat, 10 Jul 2004 17:47:22 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6AHlMSd033712; Sat, 10 Jul 2004 17:47:22 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6AHlMJu033711; Sat, 10 Jul 2004 17:47:22 GMT (envelope-from marcel) Message-Id: <200407101747.i6AHlMJu033711@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 10 Jul 2004 17:47:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jul 2004 17:47:22 -0000 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)