From owner-cvs-all@FreeBSD.ORG Tue Feb 3 21:01:17 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 8414B16A4CE; Tue, 3 Feb 2004 21:01:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5269043D54; Tue, 3 Feb 2004 21:01:16 -0800 (PST) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1451G0B058160; Tue, 3 Feb 2004 21:01:16 -0800 (PST) (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1451Gir058159; Tue, 3 Feb 2004 21:01:16 -0800 (PST) (envelope-from davidxu) Message-Id: <200402040501.i1451Gir058159@repoman.freebsd.org> From: David Xu Date: Tue, 3 Feb 2004 21:01:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread_dbg Makefile pthread_dbg.c pthread_dbg.h pthread_dbg_int.h src/lib/libpthread_dbg/arch/i386 pthread_dbg_md.c 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: Wed, 04 Feb 2004 05:01:17 -0000 davidxu 2004/02/03 21:01:16 PST FreeBSD src repository Added files: lib/libpthread_dbg Makefile pthread_dbg.c pthread_dbg.h pthread_dbg_int.h lib/libpthread_dbg/arch/i386 Makefile.inc lib/libpthread_dbg/arch/i386/i386 pthread_dbg_md.c Log: Import initial work of libpthread debugging. This is a debugger independent friend library for libpthread, the library will be used by debugger to read/write libpthread's internal data structures. Revision Changes Path 1.1 +20 -0 src/lib/libpthread_dbg/Makefile (new) 1.1 +5 -0 src/lib/libpthread_dbg/arch/i386/Makefile.inc (new) 1.1 +106 -0 src/lib/libpthread_dbg/arch/i386/i386/pthread_dbg_md.c (new) 1.1 +562 -0 src/lib/libpthread_dbg/pthread_dbg.c (new) 1.1 +139 -0 src/lib/libpthread_dbg/pthread_dbg.h (new) 1.1 +68 -0 src/lib/libpthread_dbg/pthread_dbg_int.h (new)