From owner-cvs-all@FreeBSD.ORG Thu May 29 17:21:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCAAA37B401; Thu, 29 May 2003 17:21:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A62943F93; Thu, 29 May 2003 17:21:53 -0700 (PDT) (envelope-from kan@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 h4U0Lr0U079729; Thu, 29 May 2003 17:21:53 -0700 (PDT) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4U0Lr9j079728; Thu, 29 May 2003 17:21:53 -0700 (PDT) Message-Id: <200305300021.h4U0Lr9j079728@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 29 May 2003 17:21:53 -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 Makefile pthread.map src/lib/libpthread/support Makefile.inc thr_support.c src/lib/libpthread/sys Makefile.inc src/lib/libpthread/thread Makefile.inc thr_cond.c thr_exit.c thr_init.c thr_mutex.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2003 00:21:54 -0000 kan 2003/05/29 17:21:53 PDT FreeBSD src repository Modified files: lib/libpthread Makefile lib/libpthread/sys Makefile.inc lib/libpthread/thread Makefile.inc thr_cond.c thr_exit.c thr_init.c thr_mutex.c thr_private.h thr_rwlock.c Added files: lib/libpthread pthread.map lib/libpthread/support Makefile.inc thr_support.c lib/libpthread/thread thr_rtld.c Log: Attempt to eliminate PLT relocations from rwlock aquire/release path, making them suitable for direct use by the dynamic loader. Register libpthread-specific locking API with rtld on startup. This still has some rough edges with signals which should be addresses later. Approved by: re (scottl) Revision Changes Path 1.42 +5 -0 src/lib/libpthread/Makefile 1.1 +296 -0 src/lib/libpthread/pthread.map (new) 1.1 +10 -0 src/lib/libpthread/support/Makefile.inc (new) 1.1 +55 -0 src/lib/libpthread/support/thr_support.c (new) 1.14 +1 -0 src/lib/libpthread/sys/Makefile.inc 1.41 +1 -0 src/lib/libpthread/thread/Makefile.inc 1.43 +7 -1 src/lib/libpthread/thread/thr_cond.c 1.33 +2 -6 src/lib/libpthread/thread/thr_exit.c 1.54 +2 -0 src/lib/libpthread/thread/thr_init.c 1.36 +4 -0 src/lib/libpthread/thread/thr_mutex.c 1.89 +20 -0 src/lib/libpthread/thread/thr_private.h 1.1 +137 -0 src/lib/libpthread/thread/thr_rtld.c (new) 1.12 +19 -14 src/lib/libpthread/thread/thr_rwlock.c