From owner-cvs-all Wed Nov 13 10:15:56 2002 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 3D2CD37B401; Wed, 13 Nov 2002 10:15:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C98D643E6E; Wed, 13 Nov 2002 10:15:54 -0800 (PST) (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 gADIDRmV051889; Wed, 13 Nov 2002 10:13:27 -0800 (PST) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gADIDRGr051888; Wed, 13 Nov 2002 10:13:27 -0800 (PST) Message-Id: <200211131813.gADIDRGr051888@repoman.freebsd.org> From: Daniel Eischen Date: Wed, 13 Nov 2002 10:13:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread pthread_private.h uthread_attr_init.c uthread_autoinit.c uthread_cond.c uthread_condattr_init.c uthread_create.c uthread_exit.c uthread_gc.c uthread_init.c uthread_join.c uthread_mattr_init.c uthread_mutex.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG deischen 2002/11/13 10:13:27 PST Modified files: lib/libc_r/uthread pthread_private.h uthread_attr_init.c uthread_autoinit.c uthread_cond.c uthread_condattr_init.c uthread_create.c uthread_exit.c uthread_gc.c uthread_init.c uthread_join.c uthread_mattr_init.c uthread_mutex.c uthread_mutex_prioceiling.c uthread_once.c uthread_pselect.c uthread_rwlock.c uthread_sem.c uthread_sig.c uthread_stack.c Log: At initialization, override the pthread stub routines in libc by filling in the jump table. Convert uses of pthread routines within libc_r to use the internal versions (_pthread_foo instead of pthread_foo). Remove a couple of globals from application namespace. Revision Changes Path 1.76 +4 -13 src/lib/libc_r/uthread/pthread_private.h 1.7 +2 -2 src/lib/libc_r/uthread/uthread_attr_init.c 1.2 +3 -0 src/lib/libc_r/uthread/uthread_autoinit.c 1.34 +53 -20 src/lib/libc_r/uthread/uthread_cond.c 1.7 +6 -4 src/lib/libc_r/uthread/uthread_condattr_init.c 1.36 +7 -4 src/lib/libc_r/uthread/uthread_create.c 1.28 +5 -6 src/lib/libc_r/uthread/uthread_exit.c 1.17 +7 -5 src/lib/libc_r/uthread/uthread_gc.c 1.43 +68 -12 src/lib/libc_r/uthread/uthread_init.c 1.21 +4 -2 src/lib/libc_r/uthread/uthread_join.c 1.8 +6 -4 src/lib/libc_r/uthread/uthread_mattr_init.c 1.33 +14 -13 src/lib/libc_r/uthread/uthread_mutex.c 1.6 +5 -3 src/lib/libc_r/uthread/uthread_mutex_prioceiling.c 1.7 +5 -3 src/lib/libc_r/uthread/uthread_once.c 1.2 +3 -1 src/lib/libc_r/uthread/uthread_pselect.c 1.8 +30 -27 src/lib/libc_r/uthread/uthread_rwlock.c 1.11 +21 -19 src/lib/libc_r/uthread/uthread_sem.c 1.43 +2 -1 src/lib/libc_r/uthread/uthread_sig.c 1.5 +7 -4 src/lib/libc_r/uthread/uthread_stack.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message