From owner-cvs-src@FreeBSD.ORG Tue Apr 12 03:00:29 2005 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 BB08816A4CE; Tue, 12 Apr 2005 03:00:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B0EF43D2D; Tue, 12 Apr 2005 03:00:29 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j3C30TKP056228; Tue, 12 Apr 2005 03:00:29 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j3C30TVP056227; Tue, 12 Apr 2005 03:00:29 GMT (envelope-from davidxu) Message-Id: <200504120300.j3C30TVP056227@repoman.freebsd.org> From: David Xu Date: Tue, 12 Apr 2005 03:00:29 +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/libthr Makefile pthread.map src/lib/libthr/thread Makefile.inc thr_create.c thr_exit.c thr_init.c thr_list.c thr_private.h thr_symbols.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: Tue, 12 Apr 2005 03:00:29 -0000 davidxu 2005-04-12 03:00:28 UTC FreeBSD src repository Modified files: lib/libthr Makefile pthread.map lib/libthr/thread Makefile.inc thr_create.c thr_exit.c thr_init.c thr_list.c thr_private.h thr_symbols.c Log: Add debugger event reporting support, current only TD_CREATE and TD_DEATH events are reported. Revision Changes Path 1.11 +1 -0 src/lib/libthr/Makefile 1.3 +10 -5 src/lib/libthr/pthread.map 1.10 +1 -0 src/lib/libthr/thread/Makefile.inc 1.21 +18 -3 src/lib/libthr/thread/thr_create.c 1.18 +3 -1 src/lib/libthr/thread/thr_exit.c 1.22 +2 -0 src/lib/libthr/thread/thr_init.c 1.4 +1 -1 src/lib/libthr/thread/thr_list.c 1.46 +25 -4 src/lib/libthr/thread/thr_private.h 1.2 +3 -2 src/lib/libthr/thread/thr_symbols.c