From owner-cvs-src-old@FreeBSD.ORG Wed Sep 15 02:57:05 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E9111065675 for ; Wed, 15 Sep 2010 02:57:05 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7BB608FC13 for ; Wed, 15 Sep 2010 02:57:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o8F2v5Iw085442 for ; Wed, 15 Sep 2010 02:57:05 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o8F2v5Nd085441 for cvs-src-old@freebsd.org; Wed, 15 Sep 2010 02:57:05 GMT (envelope-from davidxu@repoman.freebsd.org) Message-Id: <201009150257.o8F2v5Nd085441@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to davidxu@repoman.freebsd.org using -f From: David Xu Date: Wed, 15 Sep 2010 02:56:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr Makefile src/lib/libthr/thread thr_clean.c thr_create.c thr_exit.c thr_init.c thr_private.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Sep 2010 02:57:05 -0000 davidxu 2010-09-15 02:56:32 UTC FreeBSD src repository Modified files: lib/libthr Makefile lib/libthr/thread thr_clean.c thr_create.c thr_exit.c thr_init.c thr_private.h Log: SVN rev 212630 on 2010-09-15 02:56:32Z by davidxu add code to support stack unwinding when thread exits. note that only defer-mode cancellation works, asynchrnous mode does not work because it lacks of libuwind's support. stack unwinding is not enabled unless LIBTHR_UNWIND_STACK is defined in Makefile. Revision Changes Path 1.45 +8 -0 src/lib/libthr/Makefile 1.7 +8 -0 src/lib/libthr/thread/thr_clean.c 1.49 +5 -0 src/lib/libthr/thread/thr_create.c 1.36 +150 -1 src/lib/libthr/thread/thr_exit.c 1.56 +4 -0 src/lib/libthr/thread/thr_init.c 1.109 +9 -0 src/lib/libthr/thread/thr_private.h