From owner-cvs-src@FreeBSD.ORG Tue Jul 1 19:05:24 2003 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 05CC037B401; Tue, 1 Jul 2003 19:05:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9641044022; Tue, 1 Jul 2003 19:05:23 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h6225N0U040793; Tue, 1 Jul 2003 19:05:23 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6225NTl040792; Tue, 1 Jul 2003 19:05:23 -0700 (PDT) Message-Id: <200307020205.h6225NTl040792@repoman.freebsd.org> From: Mike Makonnen Date: Tue, 1 Jul 2003 19:05:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread thr_mutex.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: Wed, 02 Jul 2003 02:05:24 -0000 mtm 2003/07/01 19:05:23 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_mutex.c Log: Begin making libthr async signal safe. Create a private, single underscore, version of pthread_mutex_unlock for libc. pthread_mutex_lock already has one. These versions are different from the ones that applications will link against because they block all signals from the time a call to lock the mutex is made until it is successfully unlocked. Revision Changes Path 1.15 +22 -2 src/lib/libthr/thread/thr_mutex.c