From owner-svn-src-all@FreeBSD.ORG Wed Oct 23 14:28:43 2013 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 ESMTP id 1A278B52; Wed, 23 Oct 2013 14:28:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 073D5233C; Wed, 23 Oct 2013 14:28:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9NESgnc006886; Wed, 23 Oct 2013 14:28:42 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9NESgUq006885; Wed, 23 Oct 2013 14:28:42 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201310231428.r9NESgUq006885@svn.freebsd.org> From: Brooks Davis Date: Wed, 23 Oct 2013 14:28:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r256972 - head/sys/sys 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.14 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: Wed, 23 Oct 2013 14:28:43 -0000 Author: brooks Date: Wed Oct 23 14:28:42 2013 New Revision: 256972 URL: http://svnweb.freebsd.org/changeset/base/256972 Log: Revert addition of sbintime and getsbintime that crept into r256963. Pointyhat: brooks Modified: head/sys/sys/time.h Modified: head/sys/sys/time.h ============================================================================== --- head/sys/sys/time.h Wed Oct 23 14:23:48 2013 (r256971) +++ head/sys/sys/time.h Wed Oct 23 14:28:42 2013 (r256972) @@ -422,15 +422,6 @@ void bintime(struct bintime *bt); void nanotime(struct timespec *tsp); void microtime(struct timeval *tvp); -static __inline sbintime_t -sbintime(void) -{ - struct bintime bt; - - bintime(&bt); - return (bttosbt(bt)); -} - void getbinuptime(struct bintime *bt); void getnanouptime(struct timespec *tsp); void getmicrouptime(struct timeval *tvp); @@ -448,15 +439,6 @@ void getbintime(struct bintime *bt); void getnanotime(struct timespec *tsp); void getmicrotime(struct timeval *tvp); -static __inline sbintime_t -getsbintime(void) -{ - struct bintime bt; - - getbintime(&bt); - return (bttosbt(bt)); -} - /* Other functions */ int itimerdecr(struct itimerval *itp, int usec); int itimerfix(struct timeval *tv);