From owner-cvs-src@FreeBSD.ORG Fri Jun 9 14:25:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 DC19616A418; Fri, 9 Jun 2006 14:25:42 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD96743D72; Fri, 9 Jun 2006 14:25:42 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k59ENf4K081571; Fri, 9 Jun 2006 14:23:41 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k59ENfdc081570; Fri, 9 Jun 2006 14:23:41 GMT (envelope-from maxim) Message-Id: <200606091423.k59ENfdc081570@repoman.freebsd.org> From: Maxim Konovalov Date: Fri, 9 Jun 2006 14:23:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpthread/thread thr_private.h thr_sig.c thr_sigaction.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 09 Jun 2006 14:25:43 -0000 maxim 2006-06-09 14:23:40 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_private.h thr_sig.c thr_sigaction.c Log: o Remove a cruft prevented libpthread sigaction(2) wrapper to do its work for SIGINFO. Always install libpthread signal handler wrapper for SIGINFO even if user SIG_IGN's or SIG_DFL's it. SIGINFO has a special meaning for libpthread: when LIBPTHREAD_DEBUG enviroment variable defined it is used for dumping an information about threads to /tmp/. Reported by: mi Reviewed by: deischen MFC after: 2 weeks Revision Changes Path 1.127 +7 -0 src/lib/libpthread/thread/thr_private.h 1.85 +0 -6 src/lib/libpthread/thread/thr_sig.c 1.24 +11 -1 src/lib/libpthread/thread/thr_sigaction.c