From owner-cvs-src@FreeBSD.ORG Mon May 19 16:04:51 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 3FA1E37B401; Mon, 19 May 2003 16:04:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF32543F75; Mon, 19 May 2003 16:04:50 -0700 (PDT) (envelope-from deischen@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 h4JN4o0U042925; Mon, 19 May 2003 16:04:50 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4JN4od4042924; Mon, 19 May 2003 16:04:50 -0700 (PDT) Message-Id: <200305192304.h4JN4od4042924@repoman.freebsd.org> From: Daniel Eischen Date: Mon, 19 May 2003 16:04:50 -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/libpthread/arch/i386/i386 ksd.c src/lib/libpthread/thread thr_cond.c thr_kern.c thr_pselect.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: Mon, 19 May 2003 23:04:51 -0000 deischen 2003/05/19 16:04:50 PDT FreeBSD src repository Modified files: lib/libpthread/arch/i386/i386 ksd.c lib/libpthread/thread thr_cond.c thr_kern.c thr_pselect.c Log: Eek, staticize a couple of functions that shouldn't be external (initialize()!). Remove cancellation points from _pthread_cond_wait and _pthread_cond_timedwait (single underscore versions are libc private functions). Point the weak reference(!) for these functions to the versions with cancellation points. Approved by: re@(blanket till 5/19) Pointed out by: kan (cancellation point bug) Revision Changes Path 1.3 +3 -1 src/lib/libpthread/arch/i386/i386/ksd.c 1.41 +12 -21 src/lib/libpthread/thread/thr_cond.c 1.66 +6 -1 src/lib/libpthread/thread/thr_kern.c 1.4 +3 -1 src/lib/libpthread/thread/thr_pselect.c