From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:36:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02D4C16A4CE; Thu, 15 Jul 2004 03:36:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF1B543D2F; Thu, 15 Jul 2004 03:36:35 +0000 (GMT) (envelope-from davidxu@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 i6F3aZiC036416; Thu, 15 Jul 2004 03:36:35 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3aZIw036415; Thu, 15 Jul 2004 03:36:35 GMT (envelope-from davidxu) Message-Id: <200407150336.i6F3aZIw036415@repoman.freebsd.org> From: David Xu Date: Thu, 15 Jul 2004 03:36:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthread_db Makefilesrc/lib/libthread_db/include thread_db.h thread_db_int.h src/lib/libthread_db/pthread Makefile pthread_db.c pthread_db.h pthread_db_i386.c src/lib/libthread_db/src Makefile thread_db.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jul 2004 03:36:36 -0000 davidxu 2004-07-15 03:36:35 UTC FreeBSD src repository Added files: lib/libthread_db Makefile lib/libthread_db/include thread_db.h thread_db_int.h lib/libthread_db/pthread Makefile pthread_db.c pthread_db.h pthread_db_i386.c lib/libthread_db/src Makefile thread_db.c Log: Add my initial work of libthread_db. The library is used by gdb to debug threaded process. Current, only libpthread is supported, but macrel will work on it to support libthr and libc_r. Revision Changes Path 1.1 +5 -0 src/lib/libthread_db/Makefile (new) 1.1 +287 -0 src/lib/libthread_db/include/thread_db.h (new) 1.1 +93 -0 src/lib/libthread_db/include/thread_db_int.h (new) 1.1 +19 -0 src/lib/libthread_db/pthread/Makefile (new) 1.1 +1087 -0 src/lib/libthread_db/pthread/pthread_db.c (new) 1.1 +60 -0 src/lib/libthread_db/pthread/pthread_db.h (new) 1.1 +105 -0 src/lib/libthread_db/pthread/pthread_db_i386.c (new) 1.1 +15 -0 src/lib/libthread_db/src/Makefile (new) 1.1 +359 -0 src/lib/libthread_db/src/thread_db.c (new)