From owner-cvs-all@FreeBSD.ORG Thu Oct 11 20:37:36 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3768E16A41A; Thu, 11 Oct 2007 20:37:36 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id 5EEB213C46A; Thu, 11 Oct 2007 20:37:35 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8p) with ESMTP id 214025298-1834499 for multiple; Thu, 11 Oct 2007 16:35:26 -0400 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l9BKbDaW029273; Thu, 11 Oct 2007 16:37:15 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: obrien@freebsd.org Date: Thu, 11 Oct 2007 16:17:08 -0400 User-Agent: KMail/1.9.6 References: <200710091342.l99DgZDB097501@repoman.freebsd.org> <200710111422.44320.jhb@freebsd.org> <20071011193914.GA46899@dragon.NUXI.org> In-Reply-To: <20071011193914.GA46899@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200710111617.09149.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 11 Oct 2007 16:37:16 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/4529/Thu Oct 11 02:54:06 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Dag-Erling =?iso-8859-1?q?Sm=C3=B8rgrav?= , src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src Makefile.inc1 UPDATING src/cddl/lib Makefile src/cddl/usr.bin Makefile src/cddl/usr.sbin Makefile src/lib Makefile src/lib/libkse Makefile kse.map pthread.map src/lib/libkse/arch/amd64 Makefile.inc src/lib/libkse/arch/amd64/amd64 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 11 Oct 2007 20:37:36 -0000 On Thursday 11 October 2007 03:39:14 pm David O'Brien wrote: > On Thu, Oct 11, 2007 at 02:22:43PM -0400, John Baldwin wrote: > > On Thursday 11 October 2007 01:28:23 pm David O'Brien wrote: > > > On Thu, Oct 11, 2007 at 12:58:36PM +0400, Ruslan Ermilov wrote: > > > > On Wed, Oct 10, 2007 at 09:29:57AM -0700, David O'Brien wrote: > > > > > Shipping a libkse.so.3 in 7.0, would be yet another FreeBSD weirdism as > > > > > folks may wonder where .1 & 2 are. > > > > > > > > They are right here: > > > > > > > > /usr/ports/misc/compat5x/pkg-plist:%%SPARC64%%lib/compat/libkse.so.1 > > > > /usr/ports/misc/compat6x/pkg-plist.sparc64:lib/compat/libkse.so.2 > > > > > > Where did those come from? That is another weirdism as they don't exist > > > on i386: > .. > > These archs use libthr for libpthread because of lacking full libkse > > support, and install libkse as libkse as a result. They are analogous > > to libpthread.so.[12] on i386. Basically, libpthread was renamed to > > libkse on some archs and libthr on others in 7.0, and libpthread is now > > always a symlink. Given that, I think libkse should be libkse.so.3 in > > 7. > > Sparc64 is the only arch where this applies... I wonder how many sparc64 > users we have with threaded applications built on pre-releng7 that will > want to run them without recompiling... I think I have more fingers and > toes.. What about making libthr.so be .0 then on sparc64? That's what you would have to do if you wanted to maintain symmetry (because sparc64 didn't have a libthr, just a libpthread and a libkse). Given all that, I actually find it far less confusing to call them libkse.so.3 and libthr.so.3 (or 2 or whatever) and just symlinking libpthread to the default one. If we eventually remove the non-default one then the default one can become libpthread.so.3 instead of being a symlink. -- John Baldwin