From owner-svn-src-vendor@FreeBSD.ORG Wed Aug 20 06:20:07 2014 Return-Path: Delivered-To: svn-src-vendor@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74F1F630; Wed, 20 Aug 2014 06:20:07 +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 45FE53FC9; Wed, 20 Aug 2014 06:20:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7K6K7Kb009112; Wed, 20 Aug 2014 06:20:07 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7K6K69H009109; Wed, 20 Aug 2014 06:20:06 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201408200620.s7K6K69H009109@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Wed, 20 Aug 2014 06:20:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r270194 - in vendor-sys/illumos/dist/common/atomic: amd64 i386 sparc X-SVN-Group: vendor-sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Aug 2014 06:20:07 -0000 Author: delphij Date: Wed Aug 20 06:20:06 2014 New Revision: 270194 URL: http://svnweb.freebsd.org/changeset/base/270194 Log: 5043 remove deprecated atomic functions' prototypes Reviewed by: Garrett D'Amore Approved by: Robert Mustacchi Author: Josef 'Jeff' Sipek illumos/illumos-gate@6ed9368a130d7c9a82e574da808d34034da33748 Modified: vendor-sys/illumos/dist/common/atomic/amd64/atomic.s vendor-sys/illumos/dist/common/atomic/i386/atomic.s vendor-sys/illumos/dist/common/atomic/sparc/atomic.s Modified: vendor-sys/illumos/dist/common/atomic/amd64/atomic.s ============================================================================== --- vendor-sys/illumos/dist/common/atomic/amd64/atomic.s Wed Aug 20 06:15:53 2014 (r270193) +++ vendor-sys/illumos/dist/common/atomic/amd64/atomic.s Wed Aug 20 06:20:06 2014 (r270194) @@ -29,7 +29,8 @@ #if defined(_KERNEL) /* - * Legacy kernel interfaces; they will go away (eventually). + * Legacy kernel interfaces; they will go away the moment our closed + * bins no longer require them. */ ANSI_PRAGMA_WEAK2(cas8,atomic_cas_8,function) ANSI_PRAGMA_WEAK2(cas32,atomic_cas_32,function) Modified: vendor-sys/illumos/dist/common/atomic/i386/atomic.s ============================================================================== --- vendor-sys/illumos/dist/common/atomic/i386/atomic.s Wed Aug 20 06:15:53 2014 (r270193) +++ vendor-sys/illumos/dist/common/atomic/i386/atomic.s Wed Aug 20 06:20:06 2014 (r270194) @@ -30,7 +30,8 @@ #if defined(_KERNEL) /* - * Legacy kernel interfaces; they will go away (eventually). + * Legacy kernel interfaces; they will go away the moment our closed + * bins no longer require them. */ ANSI_PRAGMA_WEAK2(cas8,atomic_cas_8,function) ANSI_PRAGMA_WEAK2(cas32,atomic_cas_32,function) Modified: vendor-sys/illumos/dist/common/atomic/sparc/atomic.s ============================================================================== --- vendor-sys/illumos/dist/common/atomic/sparc/atomic.s Wed Aug 20 06:15:53 2014 (r270193) +++ vendor-sys/illumos/dist/common/atomic/sparc/atomic.s Wed Aug 20 06:20:06 2014 (r270194) @@ -30,7 +30,8 @@ #if defined(_KERNEL) /* - * Legacy kernel interfaces; they will go away (eventually). + * Legacy kernel interfaces; they will go away the moment our closed + * bins no longer require them. */ ANSI_PRAGMA_WEAK2(cas8,atomic_cas_8,function) ANSI_PRAGMA_WEAK2(cas32,atomic_cas_32,function)