From owner-svn-src-all@FreeBSD.ORG Thu Apr 3 08:16:46 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76F48A70; Thu, 3 Apr 2014 08:16:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49D7FA04; Thu, 3 Apr 2014 08:16:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s338GkNr054960; Thu, 3 Apr 2014 08:16:46 GMT (envelope-from theraven@svn.freebsd.org) Received: (from theraven@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s338GjwS054957; Thu, 3 Apr 2014 08:16:45 GMT (envelope-from theraven@svn.freebsd.org) Message-Id: <201404030816.s338GjwS054957@svn.freebsd.org> From: David Chisnall Date: Thu, 3 Apr 2014 08:16:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264070 - in head/lib/libc: . gen stdlib X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 08:16:46 -0000 Author: theraven Date: Thu Apr 3 08:16:45 2014 New Revision: 264070 URL: http://svnweb.freebsd.org/changeset/base/264070 Log: Move _b functions into the 11.x symbol version namespace. Modified: head/lib/libc/Versions.def head/lib/libc/gen/Symbol.map head/lib/libc/stdlib/Symbol.map Modified: head/lib/libc/Versions.def ============================================================================== --- head/lib/libc/Versions.def Thu Apr 3 08:08:36 2014 (r264069) +++ head/lib/libc/Versions.def Thu Apr 3 08:16:45 2014 (r264070) @@ -23,6 +23,11 @@ FBSD_1.2 { FBSD_1.3 { } FBSD_1.2; +# This version was first added to 11.0-current. +FBSD_1.4 { +} FBSD_1.3; + + # This is our private namespace. Any global interfaces that are # strictly for use only by other FreeBSD applications and libraries # are listed here. We use a separate namespace so we can write Modified: head/lib/libc/gen/Symbol.map ============================================================================== --- head/lib/libc/gen/Symbol.map Thu Apr 3 08:08:36 2014 (r264069) +++ head/lib/libc/gen/Symbol.map Thu Apr 3 08:16:45 2014 (r264070) @@ -392,7 +392,6 @@ FBSD_1.3 { nvis; pwcache_userdb; pwcache_groupdb; - scandir_b; snvis; strenvisx; strnunvis; @@ -410,6 +409,10 @@ FBSD_1.3 { waitid; }; +FBSD_1.4 { + scandir_b; +}; + FBSDprivate_1.0 { /* needed by thread libraries */ __thr_jtable; Modified: head/lib/libc/stdlib/Symbol.map ============================================================================== --- head/lib/libc/stdlib/Symbol.map Thu Apr 3 08:08:36 2014 (r264069) +++ head/lib/libc/stdlib/Symbol.map Thu Apr 3 08:16:45 2014 (r264070) @@ -86,14 +86,10 @@ FBSD_1.0 { FBSD_1.3 { at_quick_exit; - atexit_b; atof_l; atoi_l; atol_l; atoll_l; - heapsort_b; - mergesort_b; - qsort_b; quick_exit; strtod_l; strtof_l; @@ -108,6 +104,13 @@ FBSD_1.3 { strtouq_l; }; +FBSD_1.4 { + atexit_b; + heapsort_b; + mergesort_b; + qsort_b; +}; + FBSDprivate_1.0 { __system; _system;