From owner-p4-projects@FreeBSD.ORG Sat Jul 15 04:07:51 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 169BE16A4E0; Sat, 15 Jul 2006 04:07:51 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E751E16A4DD for ; Sat, 15 Jul 2006 04:07:50 +0000 (UTC) (envelope-from jb@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B307B43D45 for ; Sat, 15 Jul 2006 04:07:50 +0000 (GMT) (envelope-from jb@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 k6F47oMg092952 for ; Sat, 15 Jul 2006 04:07:50 GMT (envelope-from jb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6F47oeQ092949 for perforce@freebsd.org; Sat, 15 Jul 2006 04:07:50 GMT (envelope-from jb@freebsd.org) Date: Sat, 15 Jul 2006 04:07:50 GMT Message-Id: <200607150407.k6F47oeQ092949@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jb@freebsd.org using -f From: John Birrell To: Perforce Change Reviews Cc: Subject: PERFORCE change 101637 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jul 2006 04:07:51 -0000 http://perforce.freebsd.org/chv.cgi?CH=101637 Change 101637 by jb@jb_freebsd2 on 2006/07/15 04:07:18 More file names that clash with syscall names, resulting in only one object being built in the library (libc). This is kind of sub-optimal and ends in tears. Affected files ... .. //depot/projects/dtrace/src/lib/libthr/thread/Makefile.inc#4 edit .. //depot/projects/dtrace/src/lib/libthr/thread/pthread_create.c#1 add .. //depot/projects/dtrace/src/lib/libthr/thread/pthread_exit.c#1 add .. //depot/projects/dtrace/src/lib/libthr/thread/pthread_kill.c#1 add Differences ... ==== //depot/projects/dtrace/src/lib/libthr/thread/Makefile.inc#4 (text+ko) ==== @@ -4,6 +4,9 @@ .PATH: ${.CURDIR}/thread SRCS+= \ + pthread_create.c \ + pthread_exit.c \ + pthread_kill.c \ pthread_self.c \ thr_attr.c \ thr_barrier.c \ @@ -13,11 +16,9 @@ thr_concurrency.c \ thr_cond.c \ thr_condattr.c \ - thr_create.c \ thr_detach.c \ thr_equal.c \ thr_event.c \ - thr_exit.c \ thr_fork.c \ thr_getprio.c \ thr_getschedparam.c \ @@ -26,7 +27,6 @@ thr_join.c \ thr_list.c \ thr_kern.c \ - thr_kill.c \ thr_main_np.c \ thr_multi_np.c \ thr_mutex.c \